Advertisement
Guest User

Untitled

a guest
Dec 9th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. spring.profiles.active=jpa,dev
  2.  
  3.  
  4. logging.level.org.springframework.web=DEBUG
  5.  
  6. # Datasource configuration
  7. spring.datasource.url=jdbc:mysql://localhost:3306/world
  8. spring.datasource.username=root
  9. spring.datasource.password=admin
  10. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  11.  
  12. spring.jpa.hibernate.naming.strategy=org.hibernate.cfg.EJB3NamingStrategy
  13. spring.jpa.hibernate.ddl-auto=update
  14.  
  15. spring.data.rest.basePath=/api
  16. spring.data.rest.detection-strategy=default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement