2

尽管我检查了许多其他教程甚至官方 Spring 博客,但我在从简单的 Spring Controller 接收 JSON 时遇到了一些巨大的麻烦,但找不到任何区别,所以请帮助我。

所以我在项目中的依赖项是:

  • spring-context 3.2.2 发布
  • spring-web 3.2.2 发布
  • spring-webmvc 3.2.2 发布
  • 弹簧测试 3.2.2 发布
  • 六月 4.10
  • 小服务程序 API 2.5
  • 大气运行时 1.1.0 RC4
  • logback-经典 1.0.13
  • libthrift 0.9.0
  • 杰克逊映射器 asl 1.9.12
  • 杰克逊核心 asl 1.9.12

我的控制器非常简单,只是生成一个随机的 UUID 并返回它。它看起来如下:

@Controller
public class SimpleController {

@RequestMapping(value="/new", method=RequestMethod.GET)
public @ResponseBody SimpleResponse new() throws JsonGenerationException, JsonMappingException, IOException {

    SimpleResponse sr = new SimpleResponse();
    sr.setId(UUID.randomUUID().toString());

    return sr;

    }
}

该模型只是一个简单的 POJO

public class SimpleResponse {

private String id;

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

}

配置是这样完成的

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

<display-name>SimpleTest</display-name>

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

<servlet-mapping>
    <servlet-name>app</servlet-name>
    <url-pattern>/app/*</url-pattern>
</servlet-mapping>

</web-app>

<?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: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">

<mvc:annotation-driven />
<context:component-scan base-package="de.tum.ibis.wsc" />

</beans>

这就是服务器端。在客户端,我有一个只有一行 jQuery 代码的 html 页面

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
    <script src="http://code.jquery.com/jquery.js"></script>
    <script>

        $(document).ready(function() {

            $.getJSON("http://localhost:8080/Frontend/app/new", function(data) { console.log("it works"); });

        });

    </script>

</head>
<body>

</body>
</html>

现在根据我读过的所有内容,这应该可以工作,但对我不起作用。如果我直接在浏览器中调用 localhost:8080/Frontend/app/new 我会得到如下信息: {"id":"b46b8d67-5614-44ed-90ef-d2da14d260f6"} 并且 Firebug 告诉我来自服务器的响应标头是

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Server: Jetty(7.6.5.v20120716)

所以内容类型应该没问题。好吧,如果我现在运行 jquery ajax 调用,我会在 jquery.js 中收到错误“JSON.parse: unexpected end of data”,但我不知道为什么。我希望任何人都可以帮助我。谢谢!

- - - 更新 - - -

Firebug:jQuery 错误

Firebug:jQuery 错误

萤火虫:我得到的一切

萤火虫:我得到的一切

Firebug:如果直接访问 url,这就是我得到的

Firebug:如果直接访问 url,这就是我得到的

4

2 回答 2

2

尝试ContentNegotiationManagerFactoryBean在 Spring XML 配置中进行配置,请参阅Spring 文档

设置favorPathExtensionfalse更新方法@RequestMapping就像这样

@RequestMapping(value="/new", method=RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
于 2013-06-26T11:40:01.147 回答
0

In your AJAX request, you're using

http://localhost:8080/Frontend/app/new

And your servlet declares URL "/new", you should use "/app/new" instead.

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

于 2013-06-26T11:40:43.980 回答