Advertisement
Radkoski

WUS backend config

Dec 12th, 2022 (edited)
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. spring.profiles.active=spring-data-jpa
  2.  
  3. server.port=BACKEND_PORT
  4. server.servlet.context-path=/petclinic/
  5.  
  6. spring.messages.basename=messages/messages
  7. spring.jpa.open-in-view=false
  8.  
  9. logging.level.org.springframework=INFO
  10.  
  11. petclinic.security.enable=false
  12.  
  13.  
  14. spring.datasource.url = jdbc:mysql://DATABASE_ADDR:DATABASE_PORT/petclinic?useUnicode=true
  15. spring.datasource.username=root
  16. spring.datasource.password=root
  17. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  18. spring.jpa.database=MYSQL
  19. spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
  20. spring.jpa.hibernate.ddl-auto=none
  21.  
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement