123456789101112131415161718192021222324252627282930313233343536373839 |
- server:
- port: 8081
- servlet:
- context-path: /agent
- tomcat:
- accesslog:
- buffered: true
- directory: /home/logs/tomcat
- enabled: true
- file-date-format: .yyyy-MM-dd
- pattern: '%t | %{X-Real-IP}i | %b | %B | %H | %l | %m | %p | %q | %r | %s | %S | %u | %U | %v | %D | %T | %{Cookie}i | %{User-Agent}i | %{a}r'
- prefix: access_log
- rename-on-rotate: false
- request-attributes-enabled: false
- rotate: true
- suffix: .log
- spring:
- cloud:
- nacos:
- discovery:
- port: ${discoveryPort:8848}
- server-addr: 127.0.0.1
- application:
- name: agent
- datasource:
- name: test
- url: jdbc:mysql://localhost:3306/4dkankan_center_application?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC&allowMultiQueries=true
- username: root
- password: 123456
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- mybatis:
- mapper-locations: classpath:mapper/*/*.xml
- type-aliases-package: com.4dkankan_center_application.www
- configuration:
- map-underscore-to-camel-case: true
- logging:
- config: classpath:logback-spring.xml
|