initial/src/main/java/com/example/springboot/HelloController.java
Countdown 12692e09dd aaa
2025-04-23 17:41:15 +08:00

15 lines
293 B
Java

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!";
}
}