Spring Jackson @JsonFilter 示例
有谁知道在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 @JsonView 注释之类的东西。 Spring 不支持它,但这个问题已解决!
关注此
这是 SPR-7156。
可在Spring 版本 >= 4.1
更新
关注此链接。通过示例解释 @JsonView 注释。
You can use something like @JsonView annotation. It was not supported on Spring but this issue is solved!
Follow this
This is the SPR-7156.
Available on Spring ver >= 4.1
UPDATE
Follow this link. Explains with an example the @JsonView annotation.