做spring和struts2整合实验的时候,不能访问到action。

来源:4-2 编写Action,Service,Dao的类-Struts2整合Spring

祖国的Flower

2018-09-21 22:08

做spring和struts2整合实验的时候,出现提交表单后出现404错误。不能访问到action,之前做struts2出现这个问题是把struts-spring-plugin.jar删除就可以。但现在做整合这个包是必须的,但还是出现这种错误。求解决!!!!!!!!!!!!!!

写回答 关注

4回答

  • 小指咂
    2018-12-21 03:37:04

    web.xml里面spring配置



    <!-- Spring的框架核心监听器配置 -->

      <context-param>

      <param-name>contextConfigLocation</param-name>

      <param-value>classpath:applicationContext.xml</param-value>

      </context-param>

      <listener>

      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

      </listener>

  • 小指咂
    2018-12-21 03:36:28
    <!-- Spring的框架核心监听器配置 -->  <context-param>  		<param-name>contextConfigLocation</param-name>  		<param-value>classpath:applicationContext.xml</param-value>  </context-param>  <listener>  	<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  </listener>


  • Java菜鸟一枚
    2018-10-15 11:14:52

    不能访问到action,和包没关系吧,多半是大小写打错了,

  • 重返艾泽拉斯
    2018-09-24 15:51:21

    404不是路径的问题吗,为什么要删除这个包呢

基于SSH实现员工管理系统之框架整合篇

本视频教程主要介绍环境搭建和SSH框架整合,逐层深入理解学习

49832 学习 · 344 问题

查看课程

相似问题