23 lines
551 B
YAML
23 lines
551 B
YAML
server:
|
|
port: 8888
|
|
spring:
|
|
profiles:
|
|
active: prod
|
|
application:
|
|
name: data-dump
|
|
data-dump:
|
|
name: 测试
|
|
# mybatis 配置
|
|
mybatis-plus:
|
|
# 扫描mybatis的实现dao接口*.xml文件
|
|
mapper-locations: classpath:/mapper/*.xml
|
|
#实体类取别名
|
|
type-aliases-package: com.celnet.datadump.entity
|
|
configuration:
|
|
# 下划线转驼峰配置
|
|
map-underscore-to-camel-case: true
|
|
# 控制输出sql log
|
|
# log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|