去掉全局日期格式配置;解决直接设置费率模型没有电站的错误
This commit is contained in:
parent
bb2def0f4a
commit
512590bff7
@ -1,55 +1,44 @@
|
||||
package com.xhpc;
|
||||
|
||||
import com.fasterxml.jackson.databind.SerializationFeature;
|
||||
import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
|
||||
import org.springframework.boot.jackson.JsonComponent;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
|
||||
import java.text.DateFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.util.TimeZone;
|
||||
|
||||
@JsonComponent
|
||||
public class DateFormatConfig {
|
||||
|
||||
@Value("${spring.jackson.date-format:yyyy-MM-dd HH:mm:ss}")
|
||||
private String pattern;
|
||||
|
||||
/**
|
||||
* @author xiaofu
|
||||
* @description date 类型全局时间格式化
|
||||
* @date 2020/8/31 18:22
|
||||
*/
|
||||
@Bean
|
||||
public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilder() {
|
||||
|
||||
return builder -> {
|
||||
TimeZone tz = TimeZone.getTimeZone("UTC");
|
||||
DateFormat df = new SimpleDateFormat(pattern);
|
||||
df.setTimeZone(tz);
|
||||
builder.failOnEmptyBeans(false)
|
||||
.failOnUnknownProperties(false)
|
||||
.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
|
||||
.dateFormat(df);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @author xiaofu
|
||||
* @description LocalDate 类型全局时间格式化
|
||||
* @date 2020/8/31 18:22
|
||||
*/
|
||||
@Bean
|
||||
public LocalDateTimeSerializer localDateTimeDeserializer() {
|
||||
return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern));
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer(LocalDateTimeSerializer localDateTimeDeserializer) {
|
||||
return builder -> builder.serializerByType(LocalDateTime.class, localDateTimeDeserializer);
|
||||
}
|
||||
}
|
||||
//
|
||||
// @Value("${spring.jackson.date-format:yyyy-MM-dd HH:mm:ss}")
|
||||
// private String pattern;
|
||||
//
|
||||
// /**
|
||||
// * @author xiaofu
|
||||
// * @description date 类型全局时间格式化
|
||||
// * @date 2020/8/31 18:22
|
||||
// */
|
||||
// @Bean
|
||||
// public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilder() {
|
||||
//
|
||||
// return builder -> {
|
||||
// TimeZone tz = TimeZone.getTimeZone("UTC");
|
||||
// DateFormat df = new SimpleDateFormat(pattern);
|
||||
// df.setTimeZone(tz);
|
||||
// builder.failOnEmptyBeans(false)
|
||||
// .failOnUnknownProperties(false)
|
||||
// .featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
|
||||
// .dateFormat(df);
|
||||
// };
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * @author xiaofu
|
||||
// * @description LocalDate 类型全局时间格式化
|
||||
// * @date 2020/8/31 18:22
|
||||
// */
|
||||
// @Bean
|
||||
// public LocalDateTimeSerializer localDateTimeDeserializer() {
|
||||
// return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern));
|
||||
// }
|
||||
//
|
||||
// @Bean
|
||||
// public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer(LocalDateTimeSerializer localDateTimeDeserializer) {
|
||||
// return builder -> builder.serializerByType(LocalDateTime.class, localDateTimeDeserializer);
|
||||
// }
|
||||
}
|
||||
|
||||
@ -89,7 +89,7 @@ public class ChargingController {
|
||||
clientHandler.sendClientBinary(msg);
|
||||
return R.ok();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
log.error("send message failed. " + e.getMessage(), e);
|
||||
return R.fail(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@ -18,6 +18,7 @@ public class StationController {
|
||||
|
||||
String skey = "station:".concat(stationId.toString());
|
||||
ChargingStationDto cacheStation = REDIS.getCacheObject(skey);
|
||||
if (cacheStation==null) cacheStation = new ChargingStationDto();
|
||||
cacheStation.setRateModelId(rateModelId);
|
||||
REDIS.setCacheObject(skey, cacheStation);
|
||||
String rkey = "rateModel:".concat(rateModelId.toString());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user