Building an Application with Spring Boot :: Learn how to build an application with minimal configuration. https://spring.io/guides/gs/spring-boot/

HelloController.java 307B

123456789101112131415
  1. package hello;
  2. import org.springframework.web.bind.annotation.RestController;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. @RestController
  5. public class HelloController {
  6. @RequestMapping("/")
  7. public String index() {
  8. return "Greetings from Spring Boot!";
  9. }
  10. }