springboot项目 yml基本配置

匿名 (未验证) 提交于 2019-12-02 23:59:01
server:     port: 9001     servlet:         session:             timeout: 30M         context-path: /aiwtc     tomcat:         uri-encoding: UTF-8 spring:     datasource:         name: test         url: jdbc:mysql://172.16.10.119:3306/aiwtc?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowMultiQueries=true&serverTimezone=UTC         username: root         password: 123456         # 使用druid数据源         type: com.alibaba.druid.pool.DruidDataSource         driver-class-name: com.mysql.cj.jdbc.Driver         filters: stat         maxActive: 20         initialSize: 1         maxWait: 60000         minIdle: 1         timeBetweenEvictionRunsMillis: 60000         minEvictableIdleTimeMillis: 300000         validationQuery: select 'x'         testWhileIdle: true         testOnBorrow: false         testOnReturn: false         poolPreparedStatements: true         maxOpenPreparedStatements: 20     servlet:         multipart:             max-file-size: 3MB             max-request-size: 3MB     freemarker:         cache: false         settings:             number_format: '0.##'         suffix: .html         template-loader-path: classpath:/templates/     http:         encoding:             charset: UTF-8             force: true             enabled: true         multipart:                 enabled: true mybatis:     typeAliasesPackage: com.meiman.meimanwallet     mapperLocations: classpath:mapper/*.xml
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!