`

<welcome-file>index.action</welcome-file>404解决方案

 
阅读更多
这几天的项目页面的访问全部改为.action访问,在修改首页时遇到了问题。将web.xml文件中<welcome-file>index.action</welcome-file>修改成这样,访问首页时报404错误,也就是说文件找不到。上网查了有两种解决方法。
    一、在WebRoot下新建一个index.action空文件,这个方法简单实用,强烈推荐。
   二、因为 welcome-file 必须是实际存在的文件,不能是action或者servlet路径你可以设置一个 比如 <welcome-file>goindex.jsp</welcome-file>,然后 goindex.jsp 写 <jsp:forward page="index.action" /> 就行了。意思就是借助一个jsp页面来转发请求进入action。
分享到:
评论
2 楼 linxuebing2012 2012-03-27  
怎么在WebRoot下新建一个index.action空文件?
1 楼 hzaccp 2011-11-09  
第二种方法您试过没?

相关推荐

    spring_MVC源码

    22. &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; 23. &lt;/welcome-file-list&gt; 24.&lt;/web-app&gt; spring-servlet,主要配置controller的信息 [java] view plaincopy 01.&lt;?xml version="1.0" encoding="UTF-8...

    struts2配置2.5版

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;!-- 配置核心拦截器 --&gt; &lt;filter&gt; &lt;filter-name&gt;struts2&lt;/filter-name&gt; &lt;!-- Filter的实现类 struts2.5 --&gt; &lt;filter-class&gt; ...

    struts1[1].2配置详细.doc

    2. **欢迎文件**:`&lt;welcome-file-list&gt;` 用于定义用户访问应用时默认显示的页面。若需调用 Struts Action,可以使用 `&lt;global-forwards&gt;` 配置全局转发到特定 Action: ```xml &lt;welcome-file-list&gt; &lt;welcome-...

    初学者入门:Structs中基本配置入门

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 此配置表示,当用户访问Web应用根目录时,Web容器首先尝试加载`welcome.jsp`,如果不存在则尝试加载`index.jsp`。需要注意的是,欢迎文件列表中...

    Spring MVC 入门实例

    46 &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; 47 &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; 48 &lt;/welcome-file-list&gt; 49 50 &lt;jsp-config&gt; 51 &lt;taglib&gt; 52 &lt;taglib-uri&gt;http://java.sun.com/jsp/jstl/core&lt;/taglib-...

    Structs中基本配置入门

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` - `&lt;welcome-file&gt;`:定义了欢迎文件的列表,当没有指定文件名时,会按照列表顺序依次尝试加载这些文件。 - 可以包含多个子元素,按顺序查找...

    Struts2+spring2+hibernate3实例源码-java源码

    &lt;action name="Regist" class="RegistAction"&gt; &lt;result name="success"&gt;/success.jsp&lt;/result&gt; &lt;result name="input"&gt;/regist.jsp&lt;/result&gt; &lt;/action&gt; &lt;/package&gt; &lt;/struts&gt; ``` - **struts.properties**:...

    struts1.2配置详细

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;welcome.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 在 `welcome.jsp` 页面中,可以使用 Struts 的标签库来调用相应的 Action: ```jsp &lt;body&gt; &lt;logic:forward name=...

    Spring下的子框架SpringMVC实现单个文件上传功能

    &lt;welcome-file&gt;index.do&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` #### 五、总结 本文详细介绍了如何在SpringMVC中实现单个文件的上传功能,包括了必要的准备工作、具体的实现步骤以及相关的配置。...

    SSH整合配置.doc

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;servlet&gt; &lt;servlet-name&gt;action&lt;/servlet-name&gt; &lt;servlet-class&gt;org.apache.struts.action.ActionServlet&lt;/servlet-class&gt; &lt;init-param&gt; ...

    实现Struts上传多个文件

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;!-- error handling --&gt; &lt;error-page&gt; &lt;error-code&gt;404&lt;/error-code&gt; &lt;location&gt;/error.jsp&lt;/location&gt; &lt;/error-page&gt; &lt;/web-app&gt; ``` 此...

    eclipse搭建SSH框架详解

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 3. **添加`struts.xml`配置文件**: - 在`WEB-INF/classes`目录下创建`struts.xml`文件,并配置Struts2的基本设置。 ```xml &lt;?...

    Struts+Spring+Ibatis整合框架搭建配置文档

    &lt;/welcome-file-list&gt; ``` 二、Spring配置文件applicationContext.xml的修改 1. 配置数据源:在`applicationContext.xml`中,我们需要配置JDBC数据源,通常通过`PropertyPlaceholderConfigurer`来读取数据库连接的...

    jsp大学教程代码

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;!-- Struts Tag Library Descriptors --&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/tags/struts-bean&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/struts-...

    [struts2、spring、ibatis]框架开发开发

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation&lt;/param-name&gt; &lt;param-value&gt;/WEB-INF/applicationContext.xml&lt;/param-value&gt; &lt;/context-...

    SSH与DWR框架整合

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 这里的关键点在于确保Spring的加载发生在其他框架之前,以确保所有需要的bean都能够正确地初始化。 ##### 3.2 配置Struts 由于...

    java实现文件上传和下载

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 3、添加 struts.xml 文件。 ```xml &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE struts PUBLIC "-//Apache Software ...

    briup书城项目

    为了方便理解和说明,这里... &lt;welcome-file&gt;login.jsp&lt;/welcome-file&gt;  1.2:点击后台登录,根据action到index.jsp页面。  &lt;form action="view/system/main/index.jsp" method="post" check()"&gt;&lt;/form&gt;

Global site tag (gtag.js) - Google Analytics