SpringBoot的其他配置(SpringBoot项目配置4)
Posted henu小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot的其他配置(SpringBoot项目配置4)相关的知识,希望对你有一定的参考价值。
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>
在入口类中加入
@Bean
public 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);
}
以上是关于SpringBoot的其他配置(SpringBoot项目配置4)的主要内容,如果未能解决你的问题,请参考以下文章