兼容公司老版本号项目。必须得用spring mvc2.5.6,那么问题来了。

怎么配置controller都抛出no mapping的错误。经过查文档得出下面配置。仅供參考。

servlet-config.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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<!--使Spring支持自己主动检測组件,如注解的Controller-->
<context:annotation-config />
<context:component-scan base-package="com.cn21.edrive.download.action.v1" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
</beans>

web.xml

     <servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:/servlet-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet> <servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>

最新文章

  1. [资源分享]yslow 与firebug 修复版本Firefox35【绿色版本下载】
  2. JsTree实现简单的CRUD
  3. tiny java web server
  4. IE浏览器下ajax缓存导致数据不更新的解决方法
  5. php基础面试题1
  6. git的一些相关知识
  7. Web前端开发十日谈
  8. asp.net Server.HtmlEncode和HtmlDecode
  9. 设计模式 ( 十七 ):Observer 观察者模式 -- 行为型
  10. An error has occurred,See error log for more details
  11. HttpClient--HttpGet使用
  12. Web后台快速开发框架
  13. Python 基础知识(持续更新中)
  14. 零基础入门到精通:Python大数据与机器学习之Pandas-数据操作
  15. datetimepicker bootstrap的时间插件显示位置问题及其他配置
  16. 【6集iCore3_ADP触摸屏驱动讲解视频】6-4 底层驱动之SDRAM读写(上)
  17. SSM项目 单元测试中 注入bean 空指针异常
  18. YII2中actions的作用与使用
  19. RecylerView 的使用方法
  20. 在Java中final类与一般类有什么样的区别

热门文章

  1. Java IO--字节-字符流转换
  2. JSP 页面传值
  3. 解决 windows10 system service exception蓝屏
  4. vbScript 备忘
  5. git查看各个branch之间的关系图
  6. Flash打开新窗口 被浏览器拦截问题 navigateToURL被拦截 真正试验结果
  7. 开源大数据技术专场(上午):Spark、HBase、JStorm应用与实践
  8. A brief introduction to Hashing and Rehashing
  9. JavaScript(select onchange)的网页跳转的简单实现
  10. PHP 大数自动转换为科学计数法