You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
925 B
36 lines
925 B
debug: false
|
|
server:
|
|
port: 9293
|
|
spring:
|
|
application:
|
|
name: ConnorServer
|
|
#Oracle数据库配置
|
|
datasource:
|
|
driver-class-name: oracle.jdbc.OracleDriver
|
|
url: jdbc:oracle:thin:@172.24.16.143:1521:tc12
|
|
username: infodba
|
|
password: infodba
|
|
#邮件配置
|
|
mail:
|
|
#康勒邮箱配置,测试用
|
|
host: smtp.connor.net.cn
|
|
username: liujl@connor.net.cn
|
|
password: Admin@123456
|
|
from: liujl@connor.net.cn
|
|
port: 25
|
|
properties.mail.smtp.port: 25
|
|
properties.mail.smtp.starttls.enable: true
|
|
properties.mail.smtp.starttls.required: true
|
|
properties.mail.smtp.ssl.enable: true
|
|
default-encoding: utf-8
|
|
#配置rabbitMq 服务器
|
|
rabbitmq:
|
|
host: localhost
|
|
port: 5672
|
|
username: admin
|
|
password: admin
|
|
#虚拟host 可以不设置,使用server默认host
|
|
virtual-host: suporserver
|
|
#mybatis配置文件
|
|
mybatis:
|
|
config-location: classpath:mybatis.xml |