在Spring Boot中,可以使用內置的Tomcat服務器來監聽端口請求。以下是一種常見的方式:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
@SpringBootApplication
注解:@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
@RestController
public class MyController {
@GetMapping("/hello")
public String hello() {
return "Hello, Spring Boot!";
}
}
server.port=8080
現在,你可以通過訪問http://localhost:8080/hello
來測試請求,并獲取到"Hello, Spring Boot!"的響應結果。