36 lines
667 B
YAML
36 lines
667 B
YAML
server:
|
|
port: 8081
|
|
|
|
spring:
|
|
application:
|
|
name: @project.artifactId@
|
|
version: @project.version@
|
|
profiles:
|
|
active: prod
|
|
mail:
|
|
host: smtp.163.com
|
|
port: 465
|
|
username: njcxx0822@163.com
|
|
password: CDfsF386Y2FWKHHm
|
|
protocol: smtps
|
|
properties:
|
|
mail:
|
|
smtp:
|
|
auth: true
|
|
starttls:
|
|
enable: true
|
|
default-encoding: UTF-8
|
|
quartz:
|
|
job-store-type: jdbc
|
|
|
|
|
|
# mybatis plus mapper路径
|
|
mybatis-plus:
|
|
# mybatis plus
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
configuration:
|
|
log-impl:
|
|
org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
web-starter:
|
|
base-package: com.cxx.home |