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

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐