36 lines
823 B
YAML
36 lines
823 B
YAML
server:
|
|
port: 8080
|
|
spring:
|
|
application:
|
|
#应用的名称,可选
|
|
name: JIALDev
|
|
datasource:
|
|
druid:
|
|
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
url: jdbc:sqlserver://192.168.9.230:1433;databaseName=ERP;Encrypt=false;TrustServerCertificate=true;
|
|
username: sa
|
|
password: Itcenter110-
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 10MB
|
|
max-request-size: 10MB
|
|
|
|
logging:
|
|
level:
|
|
root: warn
|
|
com.JIAL: 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
|
|
|
|
|
|
|