javajsongson属性⼤写⾸字母⼤写
问题描述:
项⽬中使⽤的是fastjson,在使⽤过程中遇到如下问题,在于数据交换时,因为给的json数据格式的属性⾸字母都是⼤写字母,例如:
{Name:"guyue",Age=23,sex="男"},在转换json的时候,数据⽆法封装上去。
解决办法:
修改json转换为gson,pom为<dependency><groupId&le.code.gson</groupId><artifactId>gson</artifactId>
<version>2.8.0</version></dependency>,在vo属性中增加标注,@SerializedName("Name"),即可,另外本系统使⽤的是springmvc,在配置⽂件中
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<bean
class="org.verter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="com.fasterxml.jackson.databind.ObjectMapper">
<property name="serializationInclusion">
<value type="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>
</property>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
此配置为fastjson配置,如果想要接⼝输出也是通过gson,需要更改此配置,配置如下:
<mvc:annotation-driven>
fastjson怎么用<mvc:message-converters register-defaults="true">
<bean class="org.verter.json.GsonHttpMessageConverter"/>
</mvc:message-converters>
</mvc:annotation-driven>
写的很乱,只是作为记录,

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