<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> @SpringBootApplication public class MyApplication { public static void main(String[] args) { SpringApplication.run(MyApplication.class, args); } } @RestController public class MyController { @GetMapping("/hello") public String helloWorld() { return "Hello, World!"; } } # application.properties server.port=8080 server.servlet.context-path=/myapp


上一篇:
下一篇:
切换中文