springboot2怎么自定义端点-亚博电竞手机版
springboot2怎么自定义端点
这篇文章主要介绍“springboot2怎么自定义端点”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot2怎么自定义端点”文章能帮助大家解决问题。
springboot2新特性 自定义端点
packagecom.yan.otlan.springboot;importorg.springframework.boot.actuate.endpoint.annotation.endpoint;importorg.springframework.boot.actuate.endpoint.annotation.readoperation;importorg.springframework.boot.actuate.endpoint.annotation.selector;importorg.springframework.stereotype.component;@endpoint(id="custompoint")@componentpublicclassstatusendpoint{@readoperationpublicstringgetcustom(@selectorstringname){return"mynameis." name;}}
只需要三个注解@endpoint
、@readoperation
、@selector
启动springboot项目
看到红色mapped就说明可以成功了
访问http://127.0.0.1:8080/actuator/custompoint/156
结果
springboot-actuator-自定义端点属性
关闭所有端点
management.endpoints.enabled-by-default:false
修改访问项目路径
默认访问路径为/actuator,可通过修改以下属性进行修改
management.endpoints.web.base-path:/actuator
如默认访问路径为http://ip:port/actuator
如想将访问路径修改为http://ip:port/myactuator
可将属性设置为/myactuator
路径必须以/开始,否则无法访问
关于“springboot2怎么自定义端点”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注恰卡编程网行业资讯频道,小编每天都会为大家更新不同的知识点。