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