1.SpringBoot的编码格式、文件上传大小设置
在application.xml文件中加入如下内容:
spring: http: encoding: charset: UTF-8 force: true multipart: max-file-size: 100MB
2.FastJSON
在pom.xml中加入下面的内容
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.47</version> </dependency>
在入口类中加入
@Beanpublic HttpMessageConverters fastjsonHttpMessageConverter(){ //定义一个转换消息的对象 FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter(); //添加fastjson的配置信息 比如 :是否要格式化返回的json数据 FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat); //在转换器中添加配置信息 fastConverter.setFastJsonConfig(fastJsonConfig); HttpMessageConverter<?> converter = fastConverter; return new HttpMessageConverters(converter);}
原文地址:https://www.cnblogs.com/henuLiGang/p/9256843.html
时间: 2024-10-08 00:32:45