为什么我整合struts1.3+hibernate3.0+spring2.0的时候出现404错误
今天整合ssh的时候老是报404错误.和台一点异常信息都没有,这是相关配置文件边项目目录都进不去web.xml
-----------------------------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextConfigLocation
</param-name>
<param-value>classpath:applicationContext.xml
</param-value>
</context-param>
<!-- 加载spirng配置文件 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener;
</listener-class>
</listener>
<!-- 配置struts -->
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
--------------------编程问答-------------------- 是404错误!!你看你访问的路径可对,还有端口是否正确。。。 --------------------编程问答-------------------- 看看你的tomcat里面有木有这个项目,路径是否正确,端口号是否正确
--------------------编程问答-------------------- ssh的整合需要分步整合,先spring和hibernate,然后整合struts。一步一步的调试通过才行。一般是你的路径不对吧!仔细检查一下! --------------------编程问答-------------------- 确定项目 路径 对了 没有 404 找不到 项目 路径 提示 --------------------编程问答--------------------
恩恩项目,路径对了,找不到项目路径???我有些晕,坐等吧 --------------------编程问答-------------------- 在整合hibernate的事候用单元测试没问题,但是整合struts的时候。在web.xml文件加了<context-param>
<param-name>contextConfigLocation
</param-name>
<param-value>classpath:applicationContext.xml
</param-value>
</context-param>
<!-- 加载spirng配置文件 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener;
</listener-class>
</listener>
这一段项目就没法访问了。接着把这段注释掉也没用。然后我把这个web.xml文件替换掉其它以用的项目中的web.xml文件再重新换回来的时候原来可以用的项目竟然也报404错误了。 --------------------编程问答-------------------- 在整合hibernate的事候用单元测试没问题,但是整合struts的时候。在web.xml文件加了<context-param>
<param-name>contextConfigLocation
</param-name>
<param-value>classpath:applicationContext.xml
</param-value>
</context-param>
<!-- 加载spirng配置文件 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener;
</listener-class>
</listener>
这一段项目就没法访问了。接着把这段注释掉也没用。然后我把这个web.xml文件替换掉其它以用的项目中的web.xml文件再重新换回来的时候原来可以用的项目竟然也报404错误了。 --------------------编程问答-------------------- [Quote=引用 3 楼 super_ninja 的回复:]
ssh的整合需要分步整合,先spring和hibernate,然后整合struts。一步一步的调试通过才行。一般是你的路径不对吧!仔细检查一下!
[/Q在整合hibernate的事候用单元测试没问题,但是整合struts的时候。在web.xml文件加了<context-param>
<param-name>contextConfigLocation
</param-name>
<param-value>classpath:applicationContext.xml
</param-value>
</context-param>
<!-- 加载spirng配置文件 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener;
</listener-class>
</listener>
这一段项目就没法访问了。接着把这段注释掉也没用。然后我把这个web.xml文件替换掉其它以用的项目中的web.xml文件再重新换回来的时候原来可以用的项目竟然也报404错误了。uote] --------------------编程问答--------------------
struts1如何集成 怎么配置还真没用过,你在网上搜索一下配置模板看一下吧! --------------------编程问答-------------------- 看看文件字段大小写错了没。
补充:Java , Web 开发