spring-boot application.properties设置最全指南

一万年来谁著史,三千里外欲封侯。这篇文章主要讲述spring-boot application.properties设置最全指南相关的知识,希望能为你提供帮助。
1、中文乱码问题

server.tomcat.uri-encoding=UTF-8 spring.http.encoding.force=true spring.http.encoding.enabled=true spring.http.encoding.charset=UTF-8

    出现乱码时,首先区分request传过来的是什么编码,然后response返回的是什么编码,再逐一排查。
    具体参考:http://blog.csdn.net/hengyunabc/article/details/17053585###
    http://harttle.land/2016/04/11/http-form-encoding.html
2、设置文件上传大小
spring.http.multipart.maxFileSize=10Mb spring.http.multipart.maxRequestSize=10Mb

3、请求url包含扩展名,关闭根据扩展名查找资源
web-support.content-negotiation-manager.favorPathExtension = false

4、关闭X-Frame-Options的Header选型
security.headers.frame=false

 
【spring-boot application.properties设置最全指南】 
PS:持续更新中,敬请期待。。。。
 

    推荐阅读