Spring
文章平均质量分 92
飞飞1934
一个普通的码农
展开
-
Spring4.X的restFul 使用Gson返回json配置
Spring4.X的restFul 使用Gson返回json配置Spring4.X里面加入了Gson支持和并且提高了对restful的支持,因为Gson不需要依赖其他架包,并且可用性及速度都还不错,特别是使用十分的简单,所以在架构restful时选择了Gson。但是因为spring最先支持的是jackson,所以导致网络上很多jackson的Spring restful配置,很少有Gson的配原创 2016-06-17 15:32:31 · 1592 阅读 · 0 评论 -
spring boot maven package 失败(invalid entry size (expected 4 but got 3 bytes))
公司现有项目改造,要将原来的 springmvc项目改造成spring boot方式,搭建好了以后,可以直接在eclipse里面运行,但是无法使用maven package 打包,报错:[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.14.RELEASE:repacka...原创 2018-06-27 11:07:44 · 5709 阅读 · 2 评论 -
Spring boot 配置 webapp 下资源文件
spring boot 在 1.5.x以后已经不支持 jar 打包使用 jsp 了,必须使用 war 打包,引入 static 下静态资源文件可以使用 classpath:/static/,如果指定到 webapp 下静态资源文件不能使用 classpath:,直接以 / 开头就可以。import java.util.List;import org.springframework.bo...原创 2018-07-09 10:09:32 · 3132 阅读 · 0 评论 -
spring boot 中 log4j2 日志无法加载(Feature 'http://apache.org/xml/features/xinclude' is not recognized.)
Spring boot 1.5.14 版本中使用 log4j2 日志,在 eclipse 中可以打印日志,但是打包成 war 后,直接运行无法将日志输出到日志文件,配置的 log4j2-spring.xml 没有被加载。 输出错误 :ERROR StatusLogger Error parsing jar:file:/D:/KDR/xx.war!/WEB-INF/classes!/log...原创 2018-07-06 10:09:03 · 4420 阅读 · 0 评论 -
Spring Boot get请求 IE 中文报 HTTP 400 错误
1. 错误描述Spring Boot 项目,请求有中文的时候 IE 链接报 400 错误,只有 IE 报这个错误,其余谷歌浏览器或者谷歌内核浏览器不报这个错误,这很显然是因为中文问题,果然,将中文使用 encodeURI 转码之后,就可以了,因为谷歌内核的浏览器会自动将中文转码,所以不会出这个问题。 那么问题来了,为什么会出这个问题呢? 以前有项目使用的 tomcat 8.0.33 并没有...原创 2018-07-26 13:59:41 · 4885 阅读 · 0 评论 -
SpringBoot @RequestBody 报错 ('application/x-www-form-urlencoded;charset=UTF-8' not supported)
在Spring boot 中使用 @RequestBody 会报错,提示错误 Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported,代码如下: @RequestMapping(value = "/act/service/model/{modelId}/save", method = Requ...原创 2018-11-02 11:23:36 · 30360 阅读 · 6 评论 -
Springboot bootstrap.properties 配置文件中文乱码
Springboot 在默认配置文件 bootstrap.properties 中使用中文会导致乱码,无法识别,但是如果使用 unicode 编码方式进行书写,则可以正确识别。 如果将 .properties 换成 .yml 也可以识别中文,只有 .properties 无法正确识别。原创 2019-08-08 14:02:54 · 4131 阅读 · 0 评论