1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
spring: datasource: type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/canary?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false username: test password: test123456 application: name: academy-canary
http: multipart: max-file-size: 2MB max-request-size: 10MB encoding: enabled: true charset: UTF-8 force: true messages: encoding: UTF-8 jmx: enabled: true default-domain: agentservice resources: chain: strategy: content: enabled: true paths: /** server: context-path: /a port: 20475 max-http-header-size: 8192 use-forward-headers: true compression: enabled: true min-response-size: 1024 mime-types: text/plain,text/css,text/xml,text/javascript,application/json,application/javascript,application/xml,application/xml+rss,application/x-javascript,application/x-httpd-php,image/jpeg,image/gif,image/png tomcat: remote-ip-header: X-Forwarded-for protocol-header: X-Forwarded-Proto port-header: X-Forwarded-Port uri-encoding: UTF-8 basedir: /var/tmp/website-app
mybatis: type-aliases-package: com.ptteng.academy.persistence.beans,com.ptteng.academy.business.dto,com.ptteng.academy.business.query mapper-locations: classpath:/mybatis/*.xml
mapper: mappers: - com.ptteng.academy.plugin.BaseMapper not-empty: false identity: MYSQL
pagehelper: helper-dialect: mysql reasonable: true support-methods-arguments: true params: count=countSql banner: charset: UTF-8
canary: druid: username: test password: test servletPath: /druid/* resetEnable: false allowIps[0]: denyIps[0]:
logging: level: com.ptteng.academy.persistence.mapper: DEBUG
|