Spring怎么编写对外端口

avatar
作者
猴君
阅读量:0

在Spring框架中,可以通过编写一个Controller类来定义对外暴露的端口。

首先,在Spring Boot项目中创建一个Controller类,可以使用@RestController注解将该类声明为一个控制器,同时使用@RequestMapping注解指定该控制器的根路径。

@RestController @RequestMapping("/api") public class MyController {      @GetMapping("/hello")     public String hello() {         return "Hello, World!";     } } 

在上述示例中,@GetMapping注解表示该方法处理HTTP GET请求,路径为/api/hello。当收到GET请求时,执行hello()方法并返回字符串"Hello, World!"。

然后,运行Spring Boot应用程序,并访问http://localhost:8080/api/hello,将会得到"Hello, World!"的响应。

这样,你就成功编写了一个对外暴露的端口。你可以根据自己的需求编写更多的Controller类和方法来处理不同的请求和业务逻辑。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!