package com.nisum.cicd.training.springbootrefapp.controller; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RequestMapping; @RestController public class HelloController { @RequestMapping("/fries") public String index() { return "Pair Spring Boot with french fries!!! 🍟"; } }