【问题标题】:Sending JSON to Spring MVC controller将 JSON 发送到 Spring MVC 控制器
【发布时间】:2012-09-09 23:36:36
【问题描述】:

我正在尝试将 JSON 发送到 Spring MVC 控制器。在 Spring MVC 方面,一切都配置正确。

下面是代码,但似乎没有运行:

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>  
<script type="text/javascript">
  $('#myForm').on('submit', function(e) { 
    e.preventDefault(); 
    var frm = $("#myForm"); 
    var dat = frm.serialize(); 
    $.ajax({ 
    type: 'POST', 
    url: $('#myForm').attr('action'), 
    data: dat, 
    contentType: 'application/json' 
    success: function(hxr) { 
        alert("Success: " + xhr); 
    } 
}); 
});   
 </script>   
</head>
<body>
<h2>Application</h2>
<form id="myForm" action="/application/save" method="POST" accept="application/json" onclick="i()">
                <input type="text" name="name" value="myName">
    <input type="submit" value="Submit">
</form>

在 Tomcat 中出现以下错误:

org.springframework.web.servlet.mvc.support.DefaultHandlerE xceptionResolver handleNoSuchRequestHandlingMethod 警告:没有为 servlet 请求找到匹配的处理程序方法:路径 '/application/save',方法 'POST',参数 map['name' -> array['myName']]

任何想法我哪里出错了?我是 JSON 新手。我正在尝试将 JSON 发送到 Spring MVC 控制器。

@Controller
@RequestMapping("/run/*")
public class HistoryController {

    @RequestMapping(value = "save", method = RequestMethod.POST, headers = {"content-type=application/json"})
public @ResponseBody Response save(@RequestBody User user) throws Exception {
    Response userResponse = new Response();
    System.out.println("UserId :" + " " + user.getName());
    return userResponse;
}
}

@RequestMapping(value = "find", method = RequestMethod.GET)
public @ResponseBody Response find() {
    System.out.println("Run");
    Response userResponse = new Response();
    userResponse.setVersionNumber("1.0");
    return userResponse;
}

当调用 /application/run/save 时,我得到一个 JSON 响应。但是@RequestBody 不起作用。


我仍然没有运气。已经阅读了许多类似的问题。要求是服务器只接受 application/json 类型。我正在使用 Spring MVC 控制器。如前所述,代码通过@ResponseBody 将响应以 JSON 形式发回。我想通过我的 Spring MVC 控制器中的 @RequestBody 获取信息。我正在使用 JSP 将 JSON 发送到 Spring MVC 控制器。我的代码和 Spring MVC 如下所示:

我是 JSON 和 Javascript 的新手。

JSP - index.jsp

<%@page language="java" contentType="text/html"%>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>  
<script type="text/javascript">
    $('#myForm').on('submit', function(e) { 
    var frm = $("#myForm");
   var dat = JSON.stringify(frm.serializeArray()); 

$.ajax({ 
     type: 'POST', 
     url: $('#myForm').attr('action'), 
     data: dat,
     contentType: 'application/json',
     dataType: 'json',
     error: function() {
        alert('failure');
     }
     success: function(hxr) { 
         alert("Success: " + xhr); 
     }
  }); 
); 
}; 
</script> 
</head>
<body>
<h2>Application</h2>
<form id="myForm" action="/application/save" method="POST" accept="application/json" onclick="i()">
    <input type="text" name="userId" value="User">
    <input type="submit" value="Submit">
</form>
</body>
</html>

运行此程序时,我没有得到任何输出。在 Chrome 中我得到 404 Not found 错误,在 Tomcat 中我得到以下错误:

org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver     handleNoSuchRequestHandlingMethod
WARNING: No matching handler method found for servlet request: path '/application/sa
 ve', method 'POST', parameters map['userId' -> array<String>['User']]

JSP 部分有问题吗?

web.xml

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
     version="2.5">

     <display-name>WebApp</display-name>

     <context-param>
        <!-- Specifies the list of Spring Configuration files in comma separated format.-->
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/service.xml</param-value>
     </context-param>

     <listener>
        <!-- Loads your Configuration Files-->
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
     </listener>

     <servlet>
        <servlet-name>application</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
     </servlet>

     <servlet-mapping>
        <servlet-name>application</servlet-name>
        <url-pattern>/</url-pattern>
     </servlet-mapping>

     <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>    
</web-app>

服务.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
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/context http://www.springframework.org/schema/context/spring-context-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/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

    <context:component-scan base-package="com.web"/>

    <mvc:annotation-driven/>

    <context:annotation-config/>

    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>

    <bean id="jacksonMessageChanger" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
        <property name="supportedMediaTypes" value="application/json"/>
    </bean>

    <!-- <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
                <ref bean="jacksonMessageChanger"/>
            </list>
        </property>
    </bean>-->

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <util:list id="beanList">
                <ref bean="jacksonMessageChanger"/>
            </util:list>
        </property>
    </bean>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

    <!-- <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="mediaTypes">
            <map>
                <entry key="json" value="application/json"/>
            </map>
        </property>
    </bean>-->  
</beans>

控制器

package com.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RequestBody;
import com.webchannel.domain.User;
import com.webchannel.domain.UserResponse;

@Controller
@RequestMapping("/application/*")
public class SaveController {

@RequestMapping(value = "save", method = RequestMethod.POST, headers = {"content-type=application/json"})
public @ResponseBody UserResponse save(@RequestBody User user) throws Exception {
    UserResponse userResponse = new UserResponse();
    System.out.println("UserId :" + " " + user.getUserId());
    return userResponse;
}

@RequestMapping(value = "delete", method = RequestMethod.GET)
public @ResponseBody UserResponse delete() {
    System.out.println("Delete");
    UserResponse userResponse = new UserResponse();
    userResponse.setSuccess(true);
    userResponse.setVersionNumber("1.0");
    return userResponse;
}
}

当调用 /application/delete 时,我会返回 JSON。所以我知道我的 JacksonProcessor 配置正确。问题出在@RequestBody。

我哪里错了?请帮帮我。

【问题讨论】:

  • 在您的代码中,您似乎没有对创建的dat 做任何事情。不是吗?
  • 我的
    标签中应该有一个名为 的参数吗?
  • 好的,我已经修改了。请看上面,让我知道我哪里出错了。还是不行。
  • 您可以尝试将$(function i() { 替换为function i() { 并将});&lt;/script&gt; 替换为}&lt;/script&gt; 吗?
  • 为什么要发送 JSON?具体的功能需求是什么?那个 Spring MVC 控制器是否只接受 JSON 格式的请求主体,而不是像标准表单和标准 ajax 请求发送的标准 application/x-www-form-urlencoded?您的具体问题表明 Spring MVC 控制器根本不接受 JSON 格式的请求正文。只需照常使用var dat = frm.serialize();即可。

标签: java jquery json jsp spring-mvc


【解决方案1】:

控制器中没有映射到您的/application/run 的方法。我不确定你想打电话给哪一个,但你必须在url 中添加findsave。或者创建一个映射到/application/run 的方法。干杯!

【讨论】:

    【解决方案2】:

    我认为您可能需要进行一些更改

      1234563 ` 控制器中的方法。
    1. 您可能需要在控制器的保存方法中定义@RequestParam,例如public @ResponseBody Response save(@RequestParam(required=true, value="name") String name, @RequestBody User user) throws Exception {...}

    因为它明确表示您提交的请求没有附加处理程序。

    【讨论】:

    • 好的,请查看编辑后的代码。我也尝试过 RequestMapping("/run/") 但仍然是同样的错误。我实际上不想从 RequestParam 中获取。我希望通过 RequestBody 对 JSON 进行反序列化
    【解决方案3】:

    这个问题有点难以理解,因为似乎有几个不同的问题。

    但是只看这个问题:

    在 Tomcat 中出现以下错误:

    org.springframework.web.servlet.mvc.support.DefaultHandlerE xceptionResolver handleNoSuchRequestHandlingMethod 警告:没有为 servlet 请求找到匹配的处理程序方法:路径 '/application/run',方法 'POST',参数映射 ['name' ->数组['myName']]

    在您发布的 HTML 中,您有一个 &lt;form&gt; 设置为 POST/application/run

    但是,在您的 @Controller 类中,您没有任何方法绑定到此 URL。

    因为您已经使用 @RequestMapping("/run/*") 注释了该类并且使用 @RequestMapping("save") 注释了该方法,所以 save() 方法实际上绑定到 URL /run/save - 这既不是您发送数据的 URL $.ajax() 也不是表单指向的 URL。

    我建议将 org.springframework.web 记录器上的日志记录设置为 DEBUG - 当您的应用启动时,Spring 将记录每个方法映射到的每个 URL。

    【讨论】:

    • 对不起,它应该是运行/保存但还是同样的问题。
    • 我认为您不需要@RequestMapping(/application/*) 中的*。您是否采纳了我的建议来打开日志记录以准确检查哪些方法绑定到了哪些 URL?
    【解决方案4】:

    试试下面的

    <html>
    <head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>  
    <script type="text/javascript">
    $('#myForm').on('submit', function(e) {
        e.preventDefault();
        var frm = $("#myForm");
        var dat = frm.serialize();
        $.ajax({
            type: 'POST',
            url: $('#myForm').attr('action'),
            data: dat,
            contentType: 'application/json'
            success: function(hxr) {
                alert("Success: " + hxr);
            }
        });
    });    
    </script>   
    </head>
    <body>
    <h2>Application</h2>
    <form id="myForm" action="/application/run" method="POST">
        <input type="text" name="name" value="myName">
        <input type="submit" value="Submit">
    </form>​
    

    dataType:'json' 指定您期望从服务器获得的格式,

    如果您发布您的处理程序代码,最好提供帮助。

    【讨论】:

    • 请注意hxr 错字(这毕竟也是一个错误命名的变量,它根本不代表XMLHttpRequest 对象)。
    • 是的,谢谢@BalusC,这将是从服务器返回的数据。
    • 还是不行。请参阅上述更改。 BalusC 的要求是服务器只接受和发送 JSON。我可以发送 JSON 但无法接收。我想收到@RequestBody。请帮忙。
    猜你喜欢
    • 2012-01-29
    • 1970-01-01
    • 2012-10-03
    • 1970-01-01
    • 2014-10-20
    • 2014-10-31
    • 2016-09-07
    • 2013-01-11
    相关资源
    最近更新 更多