Springboot配置自定义端口号、路由
Springboot配置自定义端口号、路由
·
1、在resources中新建application.yml文件
2、配置自定义路由(端口号:8081,路由:/unit)
server:
port: 8081
servlet:
context-path: /unit
3、在TestController中,已经配置二级路由:/test
import org.springframework.web.bind.annotation.Mapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
// @RestController:实例化并返回json给客户端
@RestController
public class TestController {
// @RequestMapping:配置path
@RequestMapping("/test")
public String hello(){
return "早上好";
}
}
4、重启springboot项目,端口号和一级路由已生效
5、浏览器访问:http://127.0.0.1:8081/unit/test
更多推荐
已为社区贡献7条内容
所有评论(0)