java解决时区8小时问题

时间:2025-04-03 12:05:25
<mvc:annotation-driven> <!-- 处理请求时返回json字符串的中文乱码问题 --> <mvc:message-converters register-defaults="true"> <bean class=""> <constructor-arg value="UTF-8" /> </bean> <!--处理时区问题--> <bean class=".MappingJackson2HttpMessageConverter"> <property name="objectMapper"> <bean class=""> <!-- 处理responseBody 里面日期类型 --> <property name="dateFormat"> <bean class=""> <constructor-arg type="" value="yyyy-MM-dd HH:mm:ss" /> </bean> </property> <!-- 时区指定 --> <property name="timeZone" value="GMT+8" /> <!-- 为null字段时不显示 --> <property name="serializationInclusion"> <value type="">NON_NULL</value> </property> </bean> </property> </bean> </mvc:message-converters> </mvc:annotation-driven>