@ResourceMapping从Ajax请求接受JSON

时间:2015-02-03 15:03:32

标签: ajax json spring spring-portlet-mvc

我正在搜索如何在Spring Portlet MVC中的@ResourceMapping中解释JSON参数。当我添加@RequestBody时,我收到了消息:@RequestBody不受支持...真的卡在这个上面。

我有这个:

查看方:

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

    <p>
        <button onClick="executeAjaxTest();">Klik mij!</button>
        <button onClick="$('#ajaxResponse').html('');">Klik mij!</button>
    </p>
    <p>
        <h3>Hieronder het antwoord:</h3>
        <h4 id="ajaxResponse"></h4>
    </p>

    <script>
        function executeAjaxTest() {

            var jsonObj = {
                    user: "Korneel",
                    password: "testpassword",
                    type: {
                        testParam: "test",
                    }
                }

            console.debug(JSON.stringify(jsonObj));
            $.ajax({
                dataType: "json",
                contentType:"application/json",
                mimeType: 'application/json',
                url:"<%=getTest%>",
                data:JSON.stringify(jsonObj),
                success : function(data) {
                    $("#ajaxResponse").html(data['testString']);
                }
            });

        }
    </script>

控制器端:

@ResourceMapping(value="ajaxTest")
    @ResponseBody
    public void ajaxTestMethod(ResourceRequest request, ResourceResponse response) throws IOException, ParseException {

        LOGGER.debug("ajax method");

        JSONObject json = JSONFactoryUtil.createJSONObject();
        json.put("testString", "Ik ben succesvol verstuurd geweest!");
        response.getWriter().write(json.toString());
}

如何使用spring magic将此JSON数据自动映射到我自己的模型? 注意:它是Spring Portlet MVC,而不是常规的Spring MVC ..

3 个答案:

答案 0 :(得分:4)

在Spring MVC portlet框架中不支持@ResponseBody注释,但您可以自己实现@ResponseBody处理。

我们通过实现自定义视图类型和模型以及查看解析器来实现。

  1. 实现自定义模型和视图解析器(ModelAndViewResolver),假设是JsonModelAndViewResolver。
  2. 在resolveModelAndView方法中,检查控制器方法是否具有@ResponseBody注释(或更具体的条件以识别JSON输出 - 例如注释+所需的支持mime类型)。
  3. 如果是,请返回自定义View实现 - 假设是SingleObjectJson视图(扩展AbstractView)。
  4. 将您的待序列化对象传递给视图实例。
  5. 视图会将对象序列化为JSON格式并将其写入响应(通过在renderMergedOutputModel方法中使用Jackson,Gson或其他框架)。
  6. 将新解析程序注册为AnnotationMethodHandlerAdapter.customModelAndViewResolvers。

答案 1 :(得分:3)

你需要像这样构建你的json对象:

var jsonObj = {
                user: "Korneel",
                password: "testpassword",
                "type.testParam" : "test"
            };

$.ajax({
            dataType: "json",
            contentType:"application/json",
            mimeType: 'application/json',
            url:"<%=getTest%>",
            data:jsonObj,
            success : function(data) {
                $("#ajaxResponse").html(data['testString']);
            }
        });

在Controller中,您应该使用@ModelAttribute注释:

@ModelAttribute(value = "jsonObj")
public JsonObjCommand obtenerJsonObjCommand() {
    JsonObjCommand jsonObjCommand = new JsonObjCommand();
    return jsonObjCommand;
}

@ResourceMapping(value = "ajaxTest")
public void ajaxTestMethod(
        ResourceRequest request,
        ResourceResponse response,
        @ModelAttribute(value = "jsonObj") JsonObjCommand jsonObjCommand)
        throws IOException, ParseException {
    LOGGER.debug("USER: " + jsonObjCommand.getUser());
    LOGGER.debug("Password: " + jsonObjCommand.getPassword());
    LOGGER.debug("TestParam: " + jsonObjCommand.getType().getTestParam());
    LOGGER.debug("ajax method");

    JSONObject json = JSONFactoryUtil.createJSONObject();
    json.put("testString", "Ik ben succesvol verstuurd geweest!");
    response.getWriter().write(json.toString());
}

不要忘记你的豆子:

public class JsonObjCommand {

private String user;
private String password;
private TypeJson type;

public String getUser() {
    return user;
}
public void setUser(String user) {
    this.user = user;
}
public String getPassword() {
    return password;
}
public void setPassword(String password) {
    this.password = password;
}
public TypeJson getType() {
    return type;
}
public void setType(TypeJson type) {
    this.type = type;
}

}

public class TypeJson {

private String testParam;

public String getTestParam() {
    return testParam;
}

public void setTestParam(String testParam) {
    this.testParam = testParam;
}

}

答案 2 :(得分:0)

根据文档,@ RequestBody仅在Servlet环境中受支持,而在Portlet环境中不受支持(对于@ResponseBody也是如此)。因此,您似乎无法使用该功能。