真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot2怎么自定義端點(diǎn)

這篇文章主要介紹“SpringBoot2怎么自定義端點(diǎn)”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“SpringBoot2怎么自定義端點(diǎn)”文章能幫助大家解決問(wèn)題。

成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、界首網(wǎng)絡(luò)推廣、微信小程序、界首網(wǎng)絡(luò)營(yíng)銷、界首企業(yè)策劃、界首品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供界首建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com

SpringBoot2新特性 自定義端點(diǎn)

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;
	} 
}

只需要三個(gè)注解 @endpoint@ReadOperation、@Selector

啟動(dòng)springboot項(xiàng)目

SpringBoot2怎么自定義端點(diǎn)

看到紅色mapped就說(shuō)明可以成功了

訪問(wèn)http://127.0.0.1:8080/actuator/customPoint/156

結(jié)果

SpringBoot2怎么自定義端點(diǎn)

SpringBoot-Actuator-自定義端點(diǎn)屬性

關(guān)閉所有端點(diǎn)

management.endpoints.enabled-by-default: false

修改訪問(wèn)項(xiàng)目路徑

默認(rèn)訪問(wèn)路徑為/actuator,可通過(guò)修改以下屬性進(jìn)行修改

management.endpoints.web.base-path: /actuator

如默認(rèn)訪問(wèn)路徑為 http://ip:port/actuator

如想將訪問(wèn)路徑修改為 http://ip:port/myActuator

可將屬性設(shè)置為 /myActuator

路徑必須以/開(kāi)始,否則無(wú)法訪問(wèn)

關(guān)于“SpringBoot2怎么自定義端點(diǎn)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。


文章題目:SpringBoot2怎么自定義端點(diǎn)
本文地址:http://weahome.cn/article/jopssj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部