码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot的其他配置(SpringBoot项目配置4)

时间:2018-07-03 11:44:14      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ali   上传   return   app   conf   lib   turn   ica   格式化   

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)

标签:ali   上传   return   app   conf   lib   turn   ica   格式化   

原文地址:https://www.cnblogs.com/henuLiGang/p/9256843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!