我知道这里提到过这类问题,我经历了很多但是找不到我正在寻找的解决方案....
我一直在为我的测试版mvc 3.0应用程序获取“HTTP状态404”。每当我通过浏览器点击“http://127.0.0.1:8080/com.test.andro/androTest1.jsp
”时。这是一款简单的应用。应从文件中读取第1行文本,并将内容作为响应返回。
下面是配置文件,有人可以在这里找出问题所在。
-------------------------------的web.xml ------------- ------------------
<web-app id="WebApp_ID" version="2.4"
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_4.xsd">
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>WEB-INF/classes/log4j.properties</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
</web-app>
--------------------------------- mvc-dispatcher-servlet.xml ------- -------------------------------
<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"
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">
<context:component-scan base-package="com.test.andro" />
</beans>
-----------------------------------------控制器----- ----------------------------------
package com.test.controller;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
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;
@Controller
public class AndroController {
@RequestMapping(value="/androTest1.jsp", method=RequestMethod.GET)
@ResponseBody
public String readFromTestFile() {
File file = new File("\resources\test1.txt");
try {
BufferedReader bfr = new BufferedReader(new FileReader(file));
return bfr.readLine();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
我正在使用实际的tomcat服务器而不是eclipse工作区中的服务器。
所以,如果我点击“http://127.0.0.1:8080/
”我会得到tomcat服务器页面(猜测我的服务器工作正常)但是如果我按上面显示的项目相关URL就会出错。
如果有人能告诉我我在这里做错了什么会非常有用。
谢谢
此致
Harshad
答案 0 :(得分:0)
您的控制器当前未注册为处理程序。您需要通过声明
来配置应用程序的MVC端<mvc:annotation-driven/>
在servlet上下文配置中。添加名为mvc-dispatcher-servlet.xml
的文件作为Spring bean配置并将该行添加到其中。不要忘记命名空间声明。