我用STS创建了一个Spring MVC项目。在这个项目中,我有默认的HomeController和@RequestMapping(" /")。正确调用此控制器。
然后我还有这个控制器
package de.gl.rm;
import java.util.ArrayList;
import java.util.List;
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 de.gl.rm.model.Project;
@Controller
public class Projects {
@RequestMapping(value = "/projects", method = RequestMethod.GET)
public @ResponseBody List<Project> getProjects() {
Project p1 = new Project(1, "P1");
Project p2 = new Project(2, "P2");
ArrayList<Project> list = new ArrayList<Project>();
list.add(p1);
list.add(p2);
return list;
}
}
但在/项目我的webapp没有响应。我的配置就像
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/js/**" location="/resources/js" />
<resources mapping="/css/**" location="/resources/css" />
<resources mapping="/img/**" location="/resources/img" />
<resources mapping="/resources/**" location="/resources" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="de.gl.rm" />
<context:component-scan base-package="de.gl.rm.controller" />
我不知道为什么/项目不起作用。有人有想法吗?
由于
答案 0 :(得分:1)
我可以给你一部分答案:
1-删除<context:component-scan base-package="de.gl.rm.controller" />
因为<context:component-scan base-package="de.gl.rm" />
会扫描de.gl.rm
以及子包。
2-删除
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
因为你有一个@ResponseBody(通常是为了处理网页中的一些AJAX请求)所以当你请求List<Project>
不需要视图解析器时,它只是打印localhost:8080/rm/projects
,但你需要一个内容否定,如果你想要JSON添加produces = {"application/json"}
并添加lib来完成你的pom中的工作,例如jackson。
3-您的web.xml需要配置servlet调度程序:
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/rm/*</url-pattern>
</servlet-mapping>
rm
代表url-pattern
,因为您的网址为localhost:8080/rm/projects
(假设您的上下文路径为/
),否则为localhost:8080/<context-path>/rm/projects
4-我建议你只使用配置的注释(没有任何xml和web.xml为空)
答案 1 :(得分:0)
记录输出究竟是什么,有很多问题,但是没有一个会产生404 ......
您正在返回一个reposnsebody,因此它将返回一个Projects列表,作为json或xml。但是,由于它是自定义类,因此您需要提供转换器/序列化器。
添加驱动到配置的mvc-annotation,它将为您提供默认的序列化器/转换器(可能会立即使用项目类的toString方法,但不确定)。
答案 2 :(得分:0)
使用
xmlns:mvc="http://www.springframework.org/schema/mvc"
<mvc:annotation-driven />
在你的servlet xml中。
当我尝试在我的控制器中使用BindingResults来检查表单的结果是否与我的数据模型有效时(例如:不接受空名称),这解决了404问题。人)。
希望这能解决你的问题:)