Skip to content

Commit

Permalink
Introduce spring-boot-starter-actuator
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed Aug 29, 2017
1 parent e130ab7 commit 60a93bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,16 @@
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ server.tomcat.accesslog.buffered=false

server.tomcat.additional-tld-skip-patterns=derbyLocale_*.jar,xercesImpl.jar,xml-apis.jar,serializer.jar

management.port=8081
management.security.enabled=false

##### The following properties are used by EasyBuggy
### Account Lockout feature
account.lock.time=3600000
Expand Down

0 comments on commit 60a93bc

Please sign in to comment.