47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
server:
|
|
port: 3333
|
|
spring:
|
|
application:
|
|
#应用的名称,可选
|
|
name: JNDemo
|
|
datasource:
|
|
dynamic:
|
|
primary: master #设置默认的数据源或者数据源组,默认值即为master
|
|
strict: false #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
|
|
datasource:
|
|
master:
|
|
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
url: jdbc:sqlserver://10.1.2.11:1433;databaseName=zm_erp2;Encrypt=false;TrustServerCertificate=true;
|
|
username: sa
|
|
password: Itcenter110-
|
|
druid:
|
|
initial-size: 1
|
|
max-active: 20
|
|
min-idle: 1
|
|
max-wait: 60000
|
|
autoconfigure:
|
|
exclude: org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration #去除Druid自动配置
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 10MB
|
|
max-request-size: 10MB
|
|
|
|
logging:
|
|
level:
|
|
root: warn
|
|
com.JN: info
|
|
file:
|
|
name: logs/JIAL-ss.log
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
#在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
|
|
map-underscore-to-camel-case: true
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
global-config:
|
|
db-config:
|
|
id-type: ASSIGN_ID
|
|
|
|
|
|
|