Continues Integration and Continues Deployment
1 min readSep 22, 2019
In this article, we are going to develop a simple Spring Boot web application and create a simple CI/CD pipeline to code, build, test and deploy the application.
Simple Spring Boot web application as follows
@RestController
@RequestMapping("/")
public class HomeController {
@GetMapping("/home")
public String home(){
return "Welcome";
}
}
Create a Github repository and push the code.