14

我正在 Spring MVC 中开发 REST Web 服务。我需要更改杰克逊 2 序列化 mongodb objectid 的方式。我不确定该怎么做,因为我找到了 jackson 2 的部分文档,我所做的是创建一个自定义序列化程序:

public class ObjectIdSerializer extends JsonSerializer<ObjectId> {


    @Override
    public void serialize(ObjectId value, JsonGenerator jsonGen,
            SerializerProvider provider) throws IOException,
            JsonProcessingException {
        jsonGen.writeString(value.toString());
    }
}

创建对象映射器

public class CustomObjectMapper extends ObjectMapper {

    public CustomObjectMapper() {
        SimpleModule module = new SimpleModule("ObjectIdmodule");
        module.addSerializer(ObjectId.class, new ObjectIdSerializer());
        this.registerModule(module);
    }

}

然后注册映射器

<mvc:annotation-driven>
    <mvc:message-converters register-defaults="true">
        <bean
            class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper">
                <bean class="my.package.CustomObjectMapper"></bean>
            </property>
        </bean>
    </mvc:message-converters>
</mvc:annotation-driven>

我的 CustomConverter 永远不会被调用。我认为 CustomObjectMapper 的定义是错误的,我从杰克逊 1.x 的一些代码中改编了它

在我的控制器中,我使用@ResponseBody。我在哪里做错了?谢谢

4

3 回答 3

3

您应该使用@JsonSerialize注释来注释相应的模型字段。在您的情况下,它可能是:

public class MyMongoModel{
   @JsonSerialize(using=ObjectIdSerializer.class)
   private ObjectId id;
}

但在我看来,最好不要使用实体模型作为 VO。更好的方法是在它们之间有不同的模型和映射。你可以在这里找到我的示例项目(我使用 Spring 3 和 Jackson 2 的日期序列化作为示例)。

于 2015-01-25T12:37:35.570 回答
0

我将如何做到这一点是:

创建一个注释来声明您的自定义序列化程序:

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyMessageConverter{
}

在您的 mvc 配置文件中为此设置组件扫描

<context:include-filter expression="package.package.MyMessageConverter"
            type="annotation" />

并创建一个实现HttpMessageConverter<T>.

@MyMessageConverter
public MyConverter implements HttpMessageConverter<T>{
//do everything that's required for conversion.
}

创建一个类extends AnnotationMethodHandlerAdapter implements InitializingBean

    public MyAnnotationHandler extends AnnotationMethodHandlerAdapter implements InitializingBean{
    //Do the stuffs you need to configure the converters
    //Scan for your beans that have your specific annotation
    //get the list of already registered message converters
    //I think the list may be immutable. So, create a new list, including all of the currently configured message converters and add your own. 
    //Then, set the list back into the "setMessageConverters" method.
    }

我相信这是您实现目标所需的一切。

干杯。

于 2013-01-16T18:06:14.623 回答
0

无需创建对象映射器。将 jackson-core-2.0.0.jar 和 jackson-annotations-2.0.0.jar 添加到您的项目中。

现在,在处理服务时将以下代码行添加到您的控制器:

@RequestMapping(value = "students", method = RequestMethod.POST, headers = "Accept=application/json", consumes = "application/json")

public HashMap<String, String> postStudentForm(
            @RequestBody Student student, HttpServletResponse response)

不要错过任何注释。

于 2015-03-17T10:42:45.833 回答