摘要: 环境:springboot2.3.10 演示类 JavaBean public class User { private Integer id ; private String name ; public User(Integer id, String name) { this.id = id; t 阅读全文
posted @ 2021-07-11 07:24 FastCoder 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 环境:springboot2.3.11 + MyBatis3.5.6 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </depe 阅读全文
posted @ 2021-07-11 07:21 FastCoder 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 环境:springboot2.3.11 + prometheus1.6.7 + grafana7.5.7 什么是Prometheus Prometheus 是一个开源的服务监控系统和时间序列数据库。 prometheus存储的是时序数据,即按相同时序(相同名称和标签),以时间维度存储连续的数据的集合 阅读全文
posted @ 2021-07-11 07:16 FastCoder 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 环境:springboot2.2.13.RELEASE + springcloud Hoxton.SR8 1 开启Feign功能 @SpringCloudApplication @ServletComponentScan @EnableFeignClients("com.pack.feign") p 阅读全文
posted @ 2021-07-11 07:13 FastCoder 阅读(85) 评论(0) 推荐(0) 编辑