Advertisement
Guest User

Untitled

a guest
Feb 11th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. spring.session.store-type=jdbc
  2. spring.session.jdbc.initialize-schema=always
  3. spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-mysql.sql
  4. spring.jpa.hibernate.ddl-auto = create
  5. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  6. spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springdb?useSSL=false
  7. spring.datasource.username= root
  8. spring.datasource.password= root
  9. server.port = 8080
  10.  
  11. spring.resources.cache.cachecontrol.no-cache=true
  12. spring.resources.cache.cachecontrol.no-store=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement