SpringBoot--配置fastjson(⽇期格式转化)和热部署one.如何配置fastjson
第⼀种⽅法:
1.启动类继承extends WebMvcConfigurerAdapter
2.覆盖⽅法configureMessageConverters
第⼆种⽅法注⼊bean
/**
* springboot启动类使⽤@SpringBootApplication指定这是⼀个Spring Boot应⽤程序
* 能够启动的类,同包下和当前路径的⼦包
* 系统名称:
* 概要说明:
* @author dq(hasee)
* @since 2017年2⽉23⽇
*/
@SpringBootApplication
public class ApplicationFastJson extends WebMvcConfigurerAdapter{
@Override
public void configureMessageConverters(
List<HttpMessageConverter<?>> converters) {
/**
* 1.需要定义⼀个convert转换消息的对象
* 2.创建配置信息,加⼊配置信息:⽐如是否需要格式化返回的json
* 3.converter中添加配置信息
* 4.convert添加到converters当中
*/
FastJsonHttpMessageConverter fastJsonHttpMessageConverter =
new FastJsonHttpMessageConverter();
FastJsonConfig fastJsonConfig = new FastJsonConfig();
fastJsonConfig.setSerializerFeatures(
SerializerFeature.PrettyFormat
);
fastJsonHttpMessageConverter.setFastJsonConfig(fastJsonConfig);
converters.add(fastJsonHttpMessageConverter);
}
/* @Bean
public HttpMessageConverters fastJsonHttpMessageConverters() {
FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
FastJsonConfig fastJsonConfig = new FastJsonConfig();
fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
fastConverter.setFastJsonConfig(fastJsonConfig);
HttpMessageConverter<?> converter = fastConverter;
return new HttpMessageConverters(converter);
}*/fastjson怎么用
public static void main(String[] args) {
/
*
* 在main⽅法中启动程序
*/
SpringApplication.run(ApplicationFastJson.class, args);
}
}
使⽤fastjson可以使⽤⼀些⽅便的功能
⽇期格式转化为
@JSONField(format="yyyy-MM-dd HH:mm:ss")
private Date date;
不序列化页⾯不显⽰属性
@JSONField(serialize=false)
private String notSerilized;
two:热部署
<!-- SpringLoader plugin -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin </artifactId>
<dependencies>
<!--springloaded hot deploy -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.4.RELEASE</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<classifier>exec</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
两种启动⽅式
1.run maven build goals 键⼊ spring-boot:run
问题 关闭进程但是不会真正关闭,需要任务管理器关闭
2.如果使⽤的run as – java application的话,那么还需要做⼀些处理。
把spring-loader-1.2.4.RELEASE.jar下载下来,放到项⽬的lib⽬录中,然后把IDEA的run参数⾥VM参数设置为:
-javaagent:.\lib\springloaded-1.2.4.RELEASE.jar -noverify
然后启动就可以了,这样在run as的时候,也能进⾏热部署
带改变⽅法热部署
使⽤devTool:原理,使⽤了两个classLoader,⼀个加载不会改变的类,另⼀个加载会改变的类(restart classloader),所以加载的类少,实现较快的重启时间
修改类 保存 重启
修改配置⽂件 保存 重启
修改页⾯ 保存 重启 页⾯会刷新
注意 project  build automatically必须勾选上

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。