Guest User

Untitled

a guest
Mar 24th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. spring:
  2. profiles:
  3. active: local
  4.  
  5. # Local 환경
  6. ---
  7. spring:
  8. profiles: local
  9. jpa:
  10. database: mysql
  11. hibernate:
  12. ddl-auto: create-drop
  13. show-sql: true
  14. datasource:
  15. data: classpath:data-h2.sql # 시작할때 실행시킬 script
  16. url: jdbc:mysql://localhost:3306/cheese?useSSL=false
  17. username: root
  18. password:
  19. driver-class-name: com.mysql.jdbc.Driver
  20.  
  21. logging:
  22. level:
  23. ROOT: debug
Add Comment
Please, Sign In to add comment