Guest User

Untitled

a guest
Jun 3rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. #database mysql
  2. #spring.datasource.url=jdbc:mysql://localhost/db_spring?useSSL=false
  3. #spring.datasource.username=root
  4. #spring.datasource.password=
  5. #spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  6. #spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect
  7. #spring.jpa.hibernate.ddl-auto=create-drop
  8. #logging.level.org.hibernate.sql=debug
  9.  
  10.  
  11.  
  12. #database h2 embebida
  13.  
  14. spring.h2.console.enabled=true
  15. spring.datasource.url=jdbc:h2:mem:clientesdb
  16. spring.datasource.username=root
  17. spring.datasource.password=root
  18. spring.datasource.driver-class-name=org.h2.Driver
  19.  
  20. # error messages
  21. spring.messages.basename=locale/messages
  22. spring.messages.encoding=UTF-8
Add Comment
Please, Sign In to add comment