1.简介
主要记录一下配置文件,方便查找。
技术资料:
- druid:https://github.com/alibaba/druid/tree/master/druid-spring-boot-starter
- Mybatis Plus: https://mp.baomidou.com/guide/
- Layui:https://www.layui.com/doc/
- Lombok:https://projectlombok.org/features/all
2.springboot 配置
application.yml 文件12345678910111213141516171819202122232425262728293031323334353637383940414243server:port: 8081tomcat:uri-encoding: UTF-8spring:profiles:active: local #切换配置文件http:encoding:charset: UTF-8enabled: trueforce: truejackson:date-format: yyyy-MM-dd HH:mm:ssserialization:write-dates-as-timestamps: falsetime-zone: GMT+8redis:database: 0host: 127.0.0.1jedis:pool:max-active: 8 # 连接池最大连接数(使用负值表示没有限制)max-idle: 8 # 连接池中的最大空闲连接max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)min-idle: 0 # 连接池中的最小空闲连接password: ''port: 6379timeout: 10000servlet:multipart:max-file-size: 30MBmax-request-size: 50MBlog:path: logsmybatis-plus:mapper-locations: classpath*:/com/pkg/*/mapping/*.xmltypeAliasesPackage: com.pkg.*.entityactiviti:check-process-definitions: truedatabase-schema-update: trueprocess-definition-location-prefix: classpath:/processes/
application-local.yml 文件
pom.xml 文件
3.mybatis plus 配置
分页配置文件
代码生成工具
4.logback 配置
logback-spring.xml 文件
5.Swagger 配置
SwaggerConfig.java 文件