| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- poyee:
- profile: c://tmp/
- spring:
- profiles:
- active: dev
- application:
- name: poyee-app-ecology
- cloud:
- loadbalancer:
- retry:
- enabled: true
- server:
- port: 8087
- # MyBatis
- mybatis:
- # 搜索指定包别名
- typeAliasesPackage: com.poyee.dto,com.poyee.dto.req,com.poyee.**.dto,com.poyee.**.dto.req
- # 配置mapper的扫描,找到所有的mapper.xml映射文件
- mapperLocations: classpath*:mapper/*Mapper.xml,classpath*:mapper/**/*Mapper.xml
- # 加载全局的配置文件
- configLocation: classpath:mybatis/mybatis-config.xml
- # 日志配置
- logging:
- console.enabled: ${CONSOLE_ENABLED:true}
- file.enabled: ${FILE_ENABLED:false}
- level:
- com.poyee: debug
- org.springframework: warn
- fluentd:
- enabled: ${FLUENTD_ENABLED:false}
- host: ${FLUENTD_HOST:127.0.0.1}
- port: ${FLUENTD_PORT:24225}
- # 商家用户信息服务URL配置
- mer-user-info:
- service:
- url: http://localhost
|