1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| #服务器端口
| server:
| port: 8109
| tomcat:
| uri-encoding: UTF-8
| servlet:
| encoding:
| enabled: true
| charset: UTF-8
| force: true
| #数据源配置
| spring:
| datasource:
| url: ${ubcs.datasource.mdm.prod.url}
| username: ${ubcs.datasource.mdm.prod.username}
| password: ${ubcs.datasource.mdm.prod.password}
| messages:
| encoding: utf-8
| basename: i18n/messages
| #关闭驼峰命名映射
| mybatis-plus:
| configuration:
| map-underscore-to-camel-case: false
| call-setters-on-nulls: true
| # 过滤器设置
| mvc:
| interceptor:
| enabled: true
| include-path-patterns: /universalInterface
| #exclude-path-patterns: /exclude-path-pattern
|
|