2023-08-11 11:51:09 +08:00
|
|
|
server:
|
|
|
|
port: 8888
|
2023-08-12 04:04:46 +08:00
|
|
|
# servlet:
|
|
|
|
# context-path: '/driver-api'
|
2023-08-11 11:51:09 +08:00
|
|
|
|
|
|
|
spring:
|
|
|
|
application:
|
|
|
|
name: '@artifactId@'
|
|
|
|
profiles:
|
|
|
|
active: dev
|
|
|
|
#mybatis
|
|
|
|
mybatis-plus:
|
|
|
|
mapper-locations: classpath*:/mapper/**Mapper.xml
|
|
|
|
typeAliasesPackage: com.jwl.driver.server.entity
|
|
|
|
global-config:
|
|
|
|
column-underline: false
|
|
|
|
configuration:
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
cache-enabled: false
|
|
|
|
|
|
|
|
# 分页配置
|
|
|
|
pagehelper:
|
|
|
|
helper-dialect: mysql
|
|
|
|
reasonable: true
|
|
|
|
support-methods-arguments: true
|
|
|
|
params: count=countSql
|
|
|
|
|
|
|
|
# Knife4j配置
|
|
|
|
knife4j:
|
|
|
|
# 是否开启增强模式
|
|
|
|
enable: true
|