Spring Jackson @JsonFilter 示例

发布于 2024-11-10 09:15:40 字数 151 浏览 3 评论 0原文

有谁知道在 Spring MVC 中使用 Jackson 的 @JsonFilter 注释使调用者能够在运行时指定返回类型的示例吗?

我有一个 JSON API,我希望通过提供 getEntity 之类的方法来保持简单,最好采用一些参数或其他参数来定义要返回的实体的视图。

Does anyone know any examples of using Jackson‘s @JsonFilter annotations in Spring MVC to enable a caller to specify a return type at runtime?

I‘ve got a JSON API that I would like to keep simple by offering methods like getEntity, preferably taking some argument or other to define what view of the entity to return.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静谧 2024-11-17 09:15:40

您可以使用 @JsonView 注释之类的东西。 Spring 不支持它,但这个问题已解决!
关注

添加对 Jackson 序列化视图的支持

Spring MVC 现在支持 Jackon 的序列化视图进行渲染
来自不同控制器的同一 POJO 的不同子集
方法(例如详细页面与摘要视图)。
问题:SPR-7156

这是 SPR-7156

状态:已解决

描述

Jackson 的 JSONView 注释允许开发人员控制方法的哪些方面被序列化。在当前的实现中,必须使用 Jackson 视图编写器,但内容类型不可用。如果可以在 RequestBody 注释中指定一个 JSONView,那就更好了。

可在Spring 版本 >= 4.1

更新

关注此链接。通过示例解释 @JsonView 注释。

You can use something like @JsonView annotation. It was not supported on Spring but this issue is solved!
Follow this

Add support for Jackson serialization views

Spring MVC now supports Jackon's serialization views for rendering
different subsets of the same POJO from different controller
methods (e.g. detailed page vs summary view).
Issue: SPR-7156

This is the SPR-7156.

Status: Resolved

Description

Jackson's JSONView annotation allows the developer to control which aspects of a method are serialiazed. With the current implementation, the Jackson view writer must be used but then the content type is not available. It would be better if as part of the RequestBody annotation, a JSONView could be specified.

Available on Spring ver >= 4.1

UPDATE

Follow this link. Explains with an example the @JsonView annotation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文