Last active
December 31, 2024 11:34
-
-
Save polyglotdev/ab8828e995ffc91a623ec9bc4b94d21b to your computer and use it in GitHub Desktop.
I was attempting to use Spring Boot Actuator in IntelliJ and was running into issues. After reaching out to a colleague who knows Java better than me, he suggested a few fixes. Add the changes to `application.properties`, `pom.xml` and then you need
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.application.name=sb-ecomm | |
# Expose more endpoints for IntelliJ integration | |
management.endpoints.web.exposure.include=* | |
management.endpoint.health.show-details=always | |
management.endpoint.health.probes.enabled=true | |
# Enable Spring Boot Admin features that IntelliJ uses | |
spring.application.admin.enabled=true | |
spring.jmx.enabled=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-parent</artifactId> | |
<version>3.4.1</version> | |
<relativePath/> <!-- lookup parent from repository --> | |
</parent> | |
<groupId>com.domhallan.ecommerce</groupId> | |
<artifactId>sb-ecomm</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<name>sb-ecomm</name> | |
<description>sb-ecomm</description> | |
<url/> | |
<licenses> | |
<license/> | |
</licenses> | |
<developers> | |
<developer/> | |
</developers> | |
<scm> | |
<connection/> | |
<developerConnection/> | |
<tag/> | |
<url/> | |
</scm> | |
<properties> | |
<java.version>17</java.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-actuator</artifactId> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment