Continues Integration and Continues Deployment

Sadil Chamishka
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.

--

--

Sadil Chamishka
Sadil Chamishka

Written by Sadil Chamishka

Associate Technical Lead @ WSO2 IAM TEAM

No responses yet