61 lines
1.1 KiB
YAML
61 lines
1.1 KiB
YAML
server:
|
|
port: 8080
|
|
es-url:
|
|
127.0.0.1:9200
|
|
spring:
|
|
datasource:
|
|
username: root
|
|
password: wu180532 #tonglin0711
|
|
url: jdbc:mysql://localhost:3306/soft_bot?useUnicode=true&characterEncoding=UTF-8
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
elasticsearch:
|
|
rest:
|
|
uris: http://127.0.0.1:9200
|
|
devtools:
|
|
restart:
|
|
|
|
enabled: true
|
|
|
|
additional-paths: src/main/java
|
|
|
|
poll-interval: 3000
|
|
quiet-period: 1000
|
|
|
|
mvc:
|
|
view:
|
|
prefix: /WEB-INF/jsp/
|
|
suffix: .jsp
|
|
thymeleaf:
|
|
prefix: classpath:/templates/
|
|
suffix: .html
|
|
encoding: UTF-8
|
|
redis:
|
|
database: 0
|
|
host: 101.35.140.79
|
|
port: 6379
|
|
# password:
|
|
# 连接超时时间
|
|
timeout: 10000
|
|
password: 123456
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
mapper-locations: classpath:mapper/*.xml
|
|
|
|
|
|
mybatis:
|
|
mapper-locations: classpath:mapper/*.xml
|
|
type-aliases-package: com.gitlink.softbot.entity
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
|
|
#showSql
|
|
logging:
|
|
level:
|
|
com:
|
|
example:
|
|
mapper : debug
|
|
elasticsearch:
|
|
url: localhost:9200
|