From ecfec436b454f1612f0eb09300aa6be8c4e71658 Mon Sep 17 00:00:00 2001 From: Yan Zhang Date: Wed, 24 Aug 2022 18:01:13 +0800 Subject: [PATCH] fix typo of spring-boot-starter-actuator --- vscode-extensions/vscode-spring-boot/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-extensions/vscode-spring-boot/README.md b/vscode-extensions/vscode-spring-boot/README.md index 189531e1c..be4335926 100644 --- a/vscode-extensions/vscode-spring-boot/README.md +++ b/vscode-extensions/vscode-spring-boot/README.md @@ -63,7 +63,7 @@ If there are multiple instances of the app running on your machine, the live dat ### Application Requirements for Spring Boot projects -Live information is scraped from running apps using JMX to connect to [Spring Boot Actuator Endpoints](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html). This means that `spring-boot-actuator` must be added as a dependency to your application and enabled. The easiest way to accomplish this is to add the `spring-boot-actuator-starter` dependency to your application's `pom.xml` or `build.gradle` as explained [here](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-enabling.html). +Live information is scraped from running apps using JMX to connect to [Spring Boot Actuator Endpoints](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html). This means that `spring-boot-actuator` must be added as a dependency to your application and enabled. The easiest way to accomplish this is to add the `spring-boot-starter-actuator` dependency to your application's `pom.xml` or `build.gradle` as explained [here](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-enabling.html). #### Spring Boot 2.2 and beyond