欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

SpringBoot2新特性 自定义端点详解

时间:2023-03-09 12:10:06|栏目:JAVA代码|点击:

SpringBoot2新特性 自定义端点

package com.yan.otlan.springboot; 
import org.springframework.boot.actuate.endpoint.annotation.Endpoint;
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation;
import org.springframework.boot.actuate.endpoint.annotation.Selector;
import org.springframework.stereotype.Component; 
@Endpoint(id = "customPoint")
@Component
public class StatusEndPoint { 
	@ReadOperation
	public String getCustom(@Selector String name) {
		return "MyName is ." + 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

路径必须以/开始,否则无法访问

上一篇:浅谈JAVA 责任链模式

栏    目:JAVA代码

下一篇:没有了

本文标题:SpringBoot2新特性 自定义端点详解

本文地址:http://www.codeinn.net/misctech/227171.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有