server:
|
port: 8089
|
|
spring:
|
application:
|
name: data-oracle
|
datasource:
|
driver-class-name: oracle.jdbc.OracleDriver
|
url: jdbc:oracle:thin:@192.168.0.100:1521:ORCL?useUnicode=true&characterEncoding=UTF8
|
username: BOYING
|
password: BOYING
|
servlet:
|
multipart:
|
max-file-size: 100MB
|
max-request-size: 500MB
|
|
mybatis-plus:
|
configuration:
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
map-underscore-to-camel-case: true
|
global-config:
|
db-config:
|
id-type: auto
|
logic-delete-field: deleted
|
logic-delete-value: 1
|
logic-not-delete-value: 0
|
mapper-locations: classpath:/mapper/**/*.xml
|
|
logging:
|
level:
|
com.example: debug
|