23 lines
542 B
Java
23 lines
542 B
Java
package com.bawei.common.security.config;
|
|
|
|
import java.util.TimeZone;
|
|
import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
/**
|
|
* 系统配置
|
|
*
|
|
* @author bawei
|
|
*/
|
|
public class ApplicationConfig
|
|
{
|
|
/**
|
|
* 时区配置
|
|
*/
|
|
@Bean
|
|
public Jackson2ObjectMapperBuilderCustomizer jacksonObjectMapperCustomization()
|
|
{
|
|
return jacksonObjectMapperBuilder -> jacksonObjectMapperBuilder.timeZone(TimeZone.getDefault());
|
|
}
|
|
}
|