Mitesh Soni's Blog, page 5
May 11, 2017
Implementing DevOps with Microsoft Azure: Continuous Monitoring in Cloud Platform
We have already completed Continuous Integration and Continuous Delivery part of vision for application deployment. In this chapter, we cover another stepping stone in achieving end to end automation and that is Continuous Monitoring. We will cover importance of monitoring and different ways to monitor and troubleshoot Azure Web Apps and App Service Environment so […]
Published on May 11, 2017 01:30
May 7, 2017
Implementing DevOps with Microsoft Azure: Azure App Service Environments
This chapter is a bit more theoretical but covers a premium service of Microsoft Azure platform that can be used for specific use cases that Azure Web Apps may not be able to handle effectively. Other than that, it is important to know why we are covering Azure Web Apps and App Service Environment. The reason […]
Published on May 07, 2017 01:29
May 5, 2017
Implementing DevOps with Microsoft Azure: Continuous Integration with VSTS
In the last chapter, we covered details on Visual Studio Team Services (VSTS). In this chapter, we will see how to utilize VSTS for Continuous Integration. We will use sample spring application available on the GitHub and try to integrate it with VSTS. We have already seen in the Chapter 2 how to use Team Foundation Version … Continue reading "Implementing DevOps with Microsoft Azure: Continuous Integration with VSTS"
Published on May 05, 2017 01:29
May 4, 2017
Implementing DevOps with Microsoft Azure: Getting Started with Visual Studio Team Services (VSTS)
In this chapter, we will introduces the Visual Studio Team Services and sample application structure that is necessary to understand before automating process of building and deploying application in desired environment. We will cover basics of agile process framework supported in the VSTS. This chapter also explains how to use VSTS to manage Code and […]
Published on May 04, 2017 01:29
May 3, 2017
Implementing DevOps with Microsoft Azure: Microsoft Azure – Cloud Platform and Services
This chapter covers details about basics of Cloud computing, DevOps overview, benefits of PaaS in DevOps Culture, and Microsoft Azure – Cloud Platform and Services. It will cover required PaaS offering from Microsoft that are necessary for deploying Web Application. This chapter also covers basic concepts of Microsoft Cloud that are important to create, use, […]
Published on May 03, 2017 01:29
April 27, 2017
DevOps Bootcamp – Sharpen your DevOps knowledge with DevOps Bootcamp
Book Description DevOps Bootcamp delivers practical, learning modules in manageable chunks. Each chunk is delivered in a “day”, and each “day” is a productive day. Each day builds your competency in DevOps. You will be able to take the task you learn every day and apply it to cultivate DevOps culture. Each chapter presents core […]
Published on April 27, 2017 10:13
January 6, 2017
Understanding Packages and classpath in Java
What is Package? Package in Java is a way of organizing the code. In simple terms, its an directory or directory hierarchy which is used to store the code files. A statement like import java.util.Scanner means that on system java is a directory which in turns have sub directory name util, which have Scanner class. To […]
Published on January 06, 2017 00:21
Comparing user defined objects : Comparable and Comparator
Comparison plays important role in any programming language. Almost all the sorting techniques involves comparison. In Java, all the predefined classes and primitive data types supports comparison. User defined data types needs to provide the comparison logic, Comparable and Comparator comes in picture. For the primitive data type, how to compare is inbuilt and can […]
Published on January 06, 2017 00:18
Understanding Object class
Object class is a super class of all class in Java. All inheritance hierarchies starts from Object class followed by other class. Consider example class Shape as parent class of Rectangle and Circle class, in that case Object class is parent or super class of Shape class hence Rectangle and Circle class not only get […]
Published on January 06, 2017 00:17
Introduction to Java – What is Java?
Java is a general purpose programming language. The main feature that makes the Java language popular is “WORA” i.e. Write Once Run Anywhere. It means programs once written can run on any platform. Program written in Windows platform and compiled on Windows platform can run on Linux and Mac platform without recompiling the program or […]
Published on January 06, 2017 00:16


