博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
actuator监控
阅读量:6840 次
发布时间:2019-06-26

本文共 1383 字,大约阅读时间需要 4 分钟。

<dependency>

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.hateoas</groupId>
<artifactId>spring-hateoas</artifactId>
</dependency>

 

@Controller@EnableAutoConfigurationpublic class App {    public static void main(String[] args) throws Exception {        SpringApplication.run(App.class, args);    }}

  

{"links":[ {"rel":"self","href":"http://127.0.0.1:8080/actuator"}, {"rel":"health","href":"http://127.0.0.1:8080/health"}, {"rel":"trace","href":"http://127.0.0.1:8080/trace"}, {"rel":"configprops","href":"http://127.0.0.1:8080/configprops"}, {"rel":"mappings","href":"http://127.0.0.1:8080/mappings"}, {"rel":"env","href":"http://127.0.0.1:8080/env"}, {"rel":"auditevents","href":"http://127.0.0.1:8080/auditevents"}, {"rel":"metrics","href":"http://127.0.0.1:8080/metrics"}, {"rel":"beans","href":"http://127.0.0.1:8080/beans"}, {"rel":"heapdump","href":"http://127.0.0.1:8080/heapdump"}, {"rel":"autoconfig","href":"http://127.0.0.1:8080/autoconfig"}, {"rel":"info","href":"http://127.0.0.1:8080/info"}, {"rel":"dump","href":"http://127.0.0.1:8080/dump"}, {"rel":"loggers","href":"http://127.0.0.1:8080/loggers"}]}

 

 

management.security.enabled=false

转载地址:http://gyzul.baihongyu.com/

你可能感兴趣的文章
Android开发视频教学第一季(1-16集)视频&源码下载
查看>>
linux下共享内存mmap和DMA(直接访问内存)的使用 【转】
查看>>
设置IE浏览器代理上网
查看>>
Ext.Net学习笔记08:Ext.Net中使用数据
查看>>
SharePoint 2013 开发——其他社交功能
查看>>
充满魅惑的GetType(VB2005)
查看>>
PS网页设计教程XX——在Photoshop中创建一个七彩糖果店网站布局
查看>>
[IE&FireFox兼容]JS对select操作
查看>>
CSS hack
查看>>
如何查PostgreSQL 数据库中所有的表
查看>>
Linux内核驱动--mmap设备方法【原创】
查看>>
ELK之日志查询、收集与分析系统
查看>>
第6章 迭代循环与项目结束
查看>>
linux Shell的使用
查看>>
VS NuGet使用
查看>>
Hive中实现group concat功能(不用udf)
查看>>
从源代码分析Universal-Image-Loader中的线程池
查看>>
Navicat Premium 12 模型导出sql
查看>>
HBase入门
查看>>
魔法堂:NPM入了个门
查看>>