32 lines
745 B
YAML
32 lines
745 B
YAML
# Tomcat
|
||
server:
|
||
port: 9202
|
||
|
||
# Spring
|
||
spring:
|
||
application:
|
||
# 应用名称
|
||
name: bawei-gen
|
||
profiles:
|
||
# 环境配置
|
||
active: dev
|
||
cloud:
|
||
nacos:
|
||
discovery:
|
||
# 服务注册地址
|
||
server-addr: 192.168.111.133:8848
|
||
config:
|
||
# 配置中心地址
|
||
server-addr: 192.168.111.133:8848
|
||
# 配置文件格式
|
||
file-extension: yml
|
||
# 共享配置
|
||
shared-configs:
|
||
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
||
# mybatis配置
|
||
mybatis:
|
||
# 搜索指定包别名
|
||
typeAliasesPackage: com.bawei.gen.domain
|
||
# 配置mapper的扫描,找到所有的mapper.xml映射文件
|
||
mapperLocations: classpath:mapper/**/*.xml
|