解决使用spring-boot-starter-actuator 调试接口 不能显示正确URL的问题

1、controller接口

@RestController
@RequestMapping("/api/v1/login")
public class LoginController {
    @RequestMapping("/user")
    public void user() {
        return;
    }
}

 怎样使每个controller接口都有像main函数一样的启动按钮

 解决使用spring-boot-starter-actuator 调试接口 不能显示正确URL的问题_第1张图片

添加依赖

      
            org.springframework.boot
            spring-boot-starter-actuator
        

需要注意的一点是 如果 spring-boot的版本为2.1.x.RELEASE 时 URL路径会有问题如下图

解决使用spring-boot-starter-actuator 调试接口 不能显示正确URL的问题_第2张图片

把版本改成 2.0.x.RELEASE 则不会出现这个问题

解决使用spring-boot-starter-actuator 调试接口 不能显示正确URL的问题_第3张图片

解决使用spring-boot-starter-actuator 调试接口 不能显示正确URL的问题_第4张图片

你可能感兴趣的:(spring,boot)