spring-boot-Micrometer+Prometheus

environment: micrometer 1.8.2 prometheus 0.14.1 spring-boot-actuator 2.6.6 Use Cases <!-- Springbootstart upactuator,Dependencies will be introduced by default:micrometer-core --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>2.6.6</version> </dependency> <!-- micrometerbridgingprometheusBag,Related dependencies will be introduced by…

Spring WebFlux: Reactive Programming

In the field of software development, as the scale and complexity of Internet applications continue to increase, traditional programming models have gradually exposed some limitations, especially when faced with scenarios…

Knife4j integrates springboot

References Integrated use of knife4j_knife4jconfiguration-CSDN Blog SpringBoot integrates knife4j_knife4j-spring-boot-starter-CSDN blog Introduce maven <!--introduceKnife4jofficialstartBag,This guide selectsSpring BootVersion<3.0,Developers need to pay attention--> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-openapi2-spring-boot-starter</artifactId> <version>4.4.0</version> </dependency> Configure Knife4jConfiguration @Configuration @EnableSwagger2WebMvc public…