Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. spring.boot.admin.url=http://localhost:8081
  2. spring.datasource.url= jdbc:mysql://localhost:3306/springbootdb
  3. spring.datasource.username=root
  4. spring.datasource.password=admin
  5. endpoints.health.sensitive=false
  6. management.health.db.enabled=true
  7. management.health.defaults.enabled=true
  8. management.health.diskspace.enabled=true
  9. spring.jpa.hibernate.ddl-auto=create-drop
  10.  
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-actuator</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>de.codecentric</groupId>
  17. <artifactId>spring-boot-admin-starter-client</artifactId>
  18. <version>1.3.4</version>
  19. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement