有一个小的Struts应用程序,我正在尝试在其上启用Spring-mvc。它已经使用Spring来处理数据库事务。我有两个问题:
以下是我的相关代码段:
的web.xml:
<servlet>
<servlet-name>springDispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springDispatcher</servlet-name>
<url-pattern>*.site</url-pattern>
</servlet-mapping>
这是springDispatcher-servlet.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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
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">
<mvc:annotation-driven />
<context:component-scan base-package="com.mycom.eps.test, com.mycom.epsadmin"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<bean id="exceptionHandler" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="defaultErrorView" value="error"/>
<property name="exceptionMappings">
<props>
<prop key="java.lang.Exception">error</prop>
<prop key="org.hibernate.exception.GenericJDBCException">jdbcerror</prop>
</props>
</property>
</bean>
</beans>
这是ApplicationContext.xml的一部分:
<context:annotation-config />
<context:component-scan base-package="com.mycom.eps, com.mycom.tiff" />
<tx:annotation-driven proxy-target-class="true" />
我有两个控制器:
package com.mycom.eps.test;
// import statements
@Controller
public class TestController {
@RequestMapping(value="/test", method={RequestMethod.GET, RequestMethod.POST})
public ModelAndView test(HttpServletRequest request, HttpServletResponse response) throws EpsException {
Map<String, Object> modelMap = new HashMap<String, Object>();
return new ModelAndView("/details", modelMap);
}
}
另一位管制员:
//This is a new package I am trying to create
package com.mycom.epsadmin.controller;
// import statements
@Controller
public class PackageController {
@RequestMapping(value="/sendPackage", method={RequestMethod.GET, RequestMethod.POST})
public ModelAndView sendPackage(HttpServletRequest request, HttpServletResponse response) throws EpsException {
Map<String, Object> modelMap = new HashMap<String, Object>();
return new ModelAndView("/details", modelMap);
}
}
我的第一个问题是,为什么com.mycom.epsadmin.controller.PackageController从未在Web应用程序上下文中创建(我查看了spring日志而无法找到它)?
在试图找出我的第一个问题时,我创建了另一个控制器com.mycom.eps.test.TestController(因此控制器的名称)。虽然这个在Web应用程序上下文中创建,但请求永远不会被截获(404错误)。 以下是我试图称之为:
$.ajax({
type: "POST",
url: "test.site",
cache: false
});
当我尝试通过浏览器http://http://localhost:8080/mycom/test.site转到该页面时,我也遇到了404错误。
抱歉这篇冗长的帖子!但有人可以指出我正确的方向吗?非常感谢!
更新
刚刚发现测试控制器实际上正在接收请求(真的很抱歉)!所以我的第二个问题没有实际意义。
答案 0 :(得分:1)
在ApplicationContext
中添加com.mycom.epsadmin
后尝试
<context:component-scan base-package="com.mycom.epsadmin, com.mycom.eps, com.mycom.tiff" />