29 lines
657 B
YAML
Executable File
29 lines
657 B
YAML
Executable File
server:
|
|
port: 8080
|
|
|
|
spring:
|
|
datasource:
|
|
url: jdbc:mysql://localhost:3306/innovation_platform?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai
|
|
username: innovation
|
|
password: innovation123
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
sql:
|
|
init:
|
|
mode: always
|
|
schema-locations: classpath:schema.sql
|
|
data-locations: classpath:data.sql
|
|
|
|
mybatis-plus:
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
|
|
sa-token:
|
|
token-name: satoken
|
|
timeout: 86400
|
|
active-timeout: -1
|
|
is-concurrent: true
|
|
is-share: true
|
|
token-style: uuid
|
|
is-log: false
|