如何从ajax get()方法调用的spring控制器返回列表对象作为json格式

时间:2014-02-28 13:19:47

标签: java javascript ajax json spring

如果我的问题已经与已经存在的任何问题相匹配,请原谅我。但是我走过了很多与stackoverflow相关的解决方案的线程,但我无法找到任何相关的问题解决方案。请帮我。我很感激他们。谢谢。

实际上我尝试以json格式的形式发送列表对象作为ajax调用的响应。

这是我为实现此功能所写的代码,

My Controller

 package controllers;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.daos.StudentDao;
import com.user.model.Student;

@Controller
public class Registration {

    @RequestMapping(value = "/registration", method = RequestMethod.GET)

    public @ResponseBody List studentReg() {

        Map<Integer, String> map1 = new HashMap();
        map1.put(1, "a");
        map1.put(2, "b");
        Map<Integer, String> map2 = new HashMap();
        map2.put(3, "c");
        map2.put(4, "d");
        Map<Integer, String> map3 = new HashMap();
        map3.put(5, "e");
        map3.put(6, "f");
        List<Map> list = new ArrayList();
        list.add(map1);
        list.add(map2);
        list.add(map3);

        return list;
    }
}

My spring cinfiguration file

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 http://www.springframework.org/schema/mvc
 http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
 http://www.springframework.org/schema/context
 http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:annotation-config />
    <mvc:annotation-driven />
    <context:component-scan base-package="controllers" />
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>

</beans>

And my Ajax call is

$(document).ready(function($) {

    $("#abc").click(function(event) {
        event.preventDefault();
        $.ajax( {
            type : "Get",
            url : "registration",
            success : function(response) {
                alert(response);
            },
            error : function(e) {
                alert('Error: ' + e);
            }
        });
    });

});

最后,我在呈现响应时遇到此异常http://d.pr/i/lnzL 请帮助我,我做错了。提前谢谢。我将jackson罐添加到我的classpath以及lib文件夹中。

1 个答案:

答案 0 :(得分:1)

浏览器通常会发送Accept标头,清楚地表明他们更喜欢HTML或XML响应。 Spring默认注册了一个XML转换器,因此它会跳入并声称它可以处理响应。但是默认情况下,vanilla List不能转换为XML(尽管它可以转换为JSON)。您可以通过直接注册HttpMessageConverters来确定它,并确保如果存在XML,则前面是JSON。 (Spring Boot是顺便提一下的。)在Java中,你这样做(只转换JSON而不是其他):

@Configuration
public class WebMvcAutoConfigurationAdapter extends WebMvcConfigurerAdapter {

@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
    converters.addAll(new MappingJackson2HttpMessageConverter());
}

}

在XML中,我认为有一个用于消息转换器的命名空间元素(您应该可以使用XML编辑器找到它)。

你也需要杰克逊在你的课程中(根据评论)。您可以通过不使用浏览器来加载资源来测试它是否存在(例如,在命令行上使用curl或使用许多restie工具之一,例如允许您控制标题的浏览器插件)。 E.g。

$ curl -H "Accept: application/json" myhost/registration