initial/src/main/java/com/example/springboot/HelloController.java

15 lines
293 B
Java
Raw Normal View History

2025-04-23 17:41:15 +08:00
package com.example.springboot;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@GetMapping("/")
public String index() {
return "Greetings from Spring Boot!";
}
}