Advertisement
tadeuespindola

ademir-miguel-application-properties

Jan 13th, 2023
1,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. #Spring Boot server configuration
  2.  
  3. spring.datasource.url=jdbc:postgresql://localhost:5432/crud
  4. spring.datasource.username=postgres
  5. spring.datasource.password=psqlroot
  6. spring.datasource.driver-class-name=org.postgresql.Driver
  7. spring.jpa.hibernate.ddl-auto=update
  8. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
  9. spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect
  10.  
  11. #server.address=0.0.0.0
  12. #server.port=8000
  13.  
  14. #H2 console web access configuration
  15. #Open "http://0.0.0.0:8000/h2-console" and hit "Connect" button
  16. #spring.h2.console.enabled=true
  17. #spring.h2.console.path=/h2-console
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement