1234567891011121314151617181920212223242526272829 |
- application:
- message: editor
- server:
- context-path: /editor
- port: 80
- session-timeout: 3000
- spring:
- datasource:
- url: jdbc:mysql://172.19.103.77:3306/ydf?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
- username: root
- password: 123456
- driverClassName: com.mysql.jdbc.Driver
- # Specify the DBMS
- jpa:
- database: MYSQL
- show-sql: true
- properties:
- hibernate:
- dialect: org.hibernate.dialect.MySQL5Dialect
- hibernate:
- ddl-auto: update
- naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
- mvc:
- view:
- prefix: /pages/
- suffix: .jsp
|