application.yml 624 B

1234567891011121314151617181920212223242526272829
  1. application:
  2. message: editor
  3. server:
  4. context-path: /editor
  5. port: 80
  6. session-timeout: 3000
  7. spring:
  8. datasource:
  9. url: jdbc:mysql://172.19.103.77:3306/ydf?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  10. username: root
  11. password: 123456
  12. driverClassName: com.mysql.jdbc.Driver
  13. # Specify the DBMS
  14. jpa:
  15. database: MYSQL
  16. show-sql: true
  17. properties:
  18. hibernate:
  19. dialect: org.hibernate.dialect.MySQL5Dialect
  20. hibernate:
  21. ddl-auto: update
  22. naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
  23. mvc:
  24. view:
  25. prefix: /pages/
  26. suffix: .jsp