Spring template engine for rendering JSON

*爱你&永不变心* 提交于 2019-12-07 14:33:52

问题


I come from Ruby and have just started testing Spring and find it fairly nice.

However i'm used to being able to customize the rendered JSON output with libraries like rabl and it feels really wrong to expose internal models straight out into the JSON as i do now with the annotation @ResponseBody and just returning the model.

Does anyone have any tips on libraries similar to rabl but for java/spring or is there an existing way to do it easily with spring without manually writing templates in JSON?


回答1:


Spring uses Jackson to do the JSON (de-)serialisation. Take a look at the Jackson wiki; it describes several ways to customise the way JSON is generated or interpreted.

As I understand from your comment, you have a couple of customisations in mind.

  • Renaming fields can be achieved by annotating the field with @JsonProperty("name")
  • Not rendering fields can be achieved by annotating the field with @JsonIgnore

But these do require you to touch your model. As far as I know, there is no way you could achieve that without at least changing your model classes slightly. There's the concept of "views" in Jackson but they still require putting annotations on your model. In practice, I've never experienced problems with Java classes being annotated with both JPA and Jackson annotations, by the way.

Finally, you can consider creating two versions of your model - one that comes from your database (or whatever source of data you have), and one that is used to interact with the user interface. However, that would require a layover of transformers or converters. Whether or not that is an option is up to you.



来源:https://stackoverflow.com/questions/17591568/spring-template-engine-for-rendering-json

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!