- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Spring 3 和 Jackson 1.7.6,我可以序列化抽象类的实现并将类的完全限定名称输出为名为 @class
的属性。 .当我的 Spring Controller 从用 @ResponseBody
注释的 Controller 返回单个实例时,这很好用。 .
返回 Collection
时在上述类型中,生成的 JSON 根据正在序列化的类型(每个子类的字段都存在)而变化,但不包括 @class
属性,这是我们的客户端代码所需要的。
返回集合时如何将此类型提示放入序列化的 JSON 中?
//Returns complete with @class=com.package.blah
@RequestMapping("/json/getProduct.json")
public @ResponseBody Product getProduct(Integer id)
{
return service.getProduct(id);
}
//Does not include @class
@RequestMapping("/json/getProducts.json")
public @ResponseBody List<Product> getProducts()
{
return service.getProducts();
}
最佳答案
为此,您需要配置 ObjectMapper。这不是通过 Spring 直接实现的,因为 ObjectMapper 不是可设置的属性,而是具有设置其状态的可调用方法(然后将其存储为位掩码)。
如果您正在使用 <mvc:annotation-driven />
您需要将其替换为等效的标记,可以在 Spring JavaDocs 中找到。
扩展对象映射器:
public class ConfigurableObjectMapper extends ObjectMapper
{
public ConfigurableObjectMapper()
{
this.enableDefaultTypingAsProperty(DefaultTyping.JAVA_LANG_OBJECT, JsonTypeInfo.Id.CLASS.getDefaultPropertyName());
}
}
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<property name="order" value="0" />
</bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="webBindingInitializer">
<bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
<property name="validator" ref="validator" />
</bean>
</property>
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="objectMapper">
<bean class="com.blitzgamesstudios.web.common.json.ConfigurableObjectMapper" />
</property>
</bean>
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter" />
<bean class="org.springframework.http.converter.StringHttpMessageConverter" />
<bean class="org.springframework.http.converter.FormHttpMessageConverter" />
<bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter" />
</list>
</property>
</bean>
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" />
关于json - @JsonTypeInfo 可以与集合一起使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7473558/
当尝试将通用对象序列化/反序列化为特定类时,我遇到了以下问题: 代码: // Generic holding the payload data linked to this event @JsonTy
我正在使用 Jersey 编写 REST 服务。我有一个带有注释的抽象类 Promotion: @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS) 因此,当我返回一个
所以我的 JSON 看起来像这样: { "ActivityDisplayModel" : { "name" : "lunch with friends", "s
我正在尝试使用 Jackson 2.9.8 序列化/反序列化多态类型,除非我将此类类型的对象放入集合中,否则它可以正常工作,因为由于某种原因,当时没有写入类型信息。让我们考虑以下示例: @JsonIg
使用 Spring 3 和 Jackson 1.7.6,我可以序列化抽象类的实现并将类的完全限定名称输出为名为 @class 的属性。 .当我的 Spring Controller 从用 @Respo
使用这些依赖 compile "com.fasterxml.jackson.core:jackson-annotations:2.8.8" compile "org.codehaus.jackson:
我正在使用以下依赖项进行 JSON 序列化/反序列化 com.fasterxml.jackson.core jackson-databind 2.7.4 com.
我正在尝试序列化和反序列化(使用 Json 和 ObjectMapper )在基类上具有以下注释的对象的多态列表: @JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, i
我正在尝试使用 Jackson 来序列化具有多态性的实体。序列化的 JSON 字符串应该包含一个附加的“type”属性,其中“groupA”或“groupB”作为值,但它没有。我的实体如下所示: @E
friend 们, Jackson 框架提供基于注释的方法来在序列化过程中发出类型信息。 我不想使用 @JsonTypeInfo 我的任何类(class)中的注释。 以上注释是否有任何替代方案。 如果
我发现 Jackson JSON Processor 库有一些奇怪的行为,我很好奇这是故意的还是错误。请看下面的代码: @JsonTypeInfo(use = Id.NAME) public clas
我正在使用 @JsonTypeInfo 指示 Jackson 在 @class 属性中查找具体类型信息。但是,有时我不想指定 @class,特别是当可以根据上下文推断出子类型时。 最好的方法是什么?
我的父类(super class)型注释为 @JsonTypeInfo(use = Id.NAME, include = As.PROPERTY, property = "_typeid") - 以便
我有这样的回应: { "id":"decaa828741611e58bcffeff819cdc9f", "statement":"question statement", "
我有类层次结构 A <- B <- C。我不希望类 A 知道 C,所以我打算使用 A.type="B"表示它是类 B,然后是 B.type2 ="C"表示它是 C 类。 @JsonTypeInfo(u
我的目标是使用 Jackson 将 JSON 字符串字段转换为正确的类。 我有以下类(class): public class AnimalRecord { private String id
我正在使用 JsonTypeInfo 来处理系统读入的一些 JSON 对象的多态性。系统还将这些对象提供给其他服务。在某些情况下,我想要包括类型信息的详细对象,而在其他情况下,我想要对象的准系统最小
我尝试在应用程序的客户端序列化一个对象(来自 Enum ),并使用 jackson 在另一端(服务器端)将其反序列化为同一对象。我的客户端有这个枚举: @JsonTypeInfo(use = Json
假设我有一些像这样的 JSON [ { 'type' : { 'value': 'B' } }, {
我遇到了一种情况,我需要自定义某些 JSON 的序列化/反序列化。我已将其简化为一个可读的示例。我有一个 Container 类,其中包含实现 MyInterface 的对象。在我的示例中,Class
我是一名优秀的程序员,十分优秀!