Skip to content

Commit d89ff8c

Browse files
committed
Polish sample
Closes gh-10330
1 parent 974a630 commit d89ff8c

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

spring-boot-samples/spring-boot-sample-actuator/src/main/resources/application.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ service.name=Phil
44
# logging.level.org.springframework.security=DEBUG
55
management.address=127.0.0.1
66

7+
endpoints.default.web.enabled=true
78
endpoints.shutdown.enabled=true
89
server.tomcat.basedir=target/tomcat
910
server.tomcat.accesslog.enabled=true
1011
server.tomcat.accesslog.pattern=%h %t "%r" %s %b
11-
security.require-ssl=false
1212
#spring.jackson.serialization.INDENT_OUTPUT=true
1313
spring.jmx.enabled=true
14-
endpoints.default.web.enabled=true
1514

1615
spring.jackson.serialization.write_dates_as_timestamps=false
1716

spring-boot-samples/spring-boot-sample-cache/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
management.security.enabled=false
1+
endpoints.metrics.web.enabled=true
22

33
#
44
# Infinispan configuration file location.

spring-boot-samples/spring-boot-sample-flyway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131
<dependency>
3232
<groupId>org.springframework.boot</groupId>
33-
<artifactId>spring-boot-actuator</artifactId>
33+
<artifactId>spring-boot-starter-actuator</artifactId>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.flywaydb</groupId>

spring-boot-samples/spring-boot-sample-flyway/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
management.security.enabled=false
1+
endpoints.flyway.web.enabled=true
22

33
spring.jpa.hibernate.ddl-auto=validate
44

spring-boot-samples/spring-boot-sample-liquibase/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131
<dependency>
3232
<groupId>org.springframework.boot</groupId>
33-
<artifactId>spring-boot-actuator</artifactId>
33+
<artifactId>spring-boot-starter-actuator</artifactId>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.liquibase</groupId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
management.security.enabled=false
1+
endpoints.liquibase.web.enabled=true
22

33
spring.h2.console.enabled=true

0 commit comments

Comments
 (0)