How do I render a JSON view/response via AJAX usin

2019-03-16 12:37发布

I've spent the last six hours scouring Google and stackoverflow for an answer to this question. I'm originally a PHP developer, so bear with me - returning a JSON array from a PHP controller is trivial.

I'm using Spring MVC 3.0, and I simply want to return a JSON object back to some Javascript from my Spring MVC Controller. It seems that there is no easy way to currently do this using a portlet (https://jira.springsource.org/browse/SPR-7344). Solutions I have seen suggest creating another DispatcherServlet that serves up JSON responses, but I have yet to find a well-documented example of this. If anyone knows a good way to accomplish this (preferably with annotations), please do tell!

5条回答
放荡不羁爱自由
2楼-- · 2019-03-16 12:57

I was able to make it work in Spring 3.0.5 with two simple modifications:

  • Implementing custom WebArgumentResolver to parse an object from JSON from ResourceRequest body
  • Returning MappingJacksonJsonView from my controller's method.

Available in Spring 3.1 only - you may want to use setExtractValueFromSingleKeyModel in your MappingJacksonJsonView

If anybody is in intereset, I can post java code

查看更多
Melony?
3楼-- · 2019-03-16 12:58

Starting with Spring 3, a controller will automatically convert to json if using ajax get/post with application type of json (i.e. .getJSON and .postJSON in jQuery). This functionality is identical between the servlet and portlet variations of Spring MVC.

Here is a blog post explaining it.

http://blog.springsource.com/2010/01/25/ajax-simplifications-in-spring-3-0/

查看更多
ら.Afraid
4楼-- · 2019-03-16 12:59

I ended up finding a workaround to return "JSON" from a Spring MVC portlet controller. Here's how I did it.

In my controller:

@ResourceMapping("ajaxTest")
public void ajaxHandler(ResourceRequest request, ResourceResponse response)
        throws IOException {
    OutputStream outStream = response.getPortletOutputStream();
    StringBuffer buffer = new StringBuffer();

    Map<String, String> testMap = new HashMap<String, String>();
    testMap.put("foo", "bar");

    String test = new JSONObject(testMap).toString();
    buffer.append(test);

    outStream.write(buffer.toString().getBytes());
}

In "view.jsp":

<portlet:resourceURL var="ajaxtest" id="ajaxTest"/>

<script type="text/javascript">
  $.get('<%= ajaxtest %>', function(response) {
    var json = eval('(' + response + ')');
  });
</script>

Since the @ResourceMapping annotation currently doesn't support returning JSON, I just used org.json.JSONObject to convert my map to a JSON object, and then returned the toString() of this object. The value of @ResourceMapping should match the id of the resourceURL. The use of eval to convert the JSON string to Javascript poses a security risk, but I just included it because it's the simplest example. If you are worried about security, use a JSON parser.

查看更多
叛逆
5楼-- · 2019-03-16 13:00

Elaborating on @alex answer:

    @ResourceMapping(value = "showJson")
    public ModelAndView showJson(ResourceRequest request) {
    ModelAndView mav = new ModelAndView(new 
                                   MappingJacksonJsonView());
    mav.addObject("key", myBeanToBeSerializedAsJson);
    return mav;
    }
查看更多
登录 后发表回答