web.xml<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<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> 
  
  
  
<resource-ref>
<res-ref-name>jdbc/mms</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref> 
<welcome-file-list>
    <welcome-file>add.jsp</welcome-file>
  </welcome-file-list> 
</web-app>struts-config.xml<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "struts-config_1_3.dtd" >
<struts-config>
<action-mappings>
<action path="/zyfTestAction"
type="org.springframework.web.struts.DelegatingActionProxy"
parameter="method">
</action>
</action-mappings>
<!-- 
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
     <set-property property="contextConfigLocation" value="classpath:applicationContext.xml" />
   </plug-in>
 -->
</struts-config>
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "struts-config_1_3.dtd" >
<struts-config>
<action-mappings>
<action path="/zyfTestAction"
type="org.springframework.web.struts.DelegatingActionProxy"
parameter="method">
</action>
</action-mappings>
<!-- 
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
     <set-property property="contextConfigLocation" value="classpath:applicationContext.xml" />
   </plug-in>
 -->
</struts-config>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="myDataSource"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="java:comp/env/jdbc/mms" />
</bean> <bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="mappingResources">
<list>
<value>
com/zyf/model/ZyfTest.hbm.xml
</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.connnection.charSet">UTF-8</prop>
<prop key="hibernate.jdbc.batch_size">50</prop>
</props>
</property>

</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
    <bean id="transactionBase"
            class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
            lazy-init="true" abstract="true">
        <!-- 配置事务管理器 -->
        <property name="transactionManager" ref="transactionManager" />
        <!-- 配置事务属性 -->
        <property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_SUPPORTS</prop>
<prop key="find*">PROPAGATION_SUPPORTS</prop>
<prop key="load*">PROPAGATION_SUPPORTS</prop>
<prop key="query*">PROPAGATION_SUPPORTS</prop>
<prop key="add*">PROPAGATION_REQUIRED</prop>
<prop key="call*">PROPAGATION_REQUIRED</prop>
<prop key="dele*">PROPAGATION_REQUIRED</prop>
<prop key="feed*">PROPAGATION_REQUIRED</prop>
<prop key="update*">PROPAGATION_REQUIRED</prop>
<prop key="save*">PROPAGATION_REQUIRED</prop>
<prop key="add*">PROPAGATION_SUPPORTS</prop>
<prop key="is*">PROPAGATION_SUPPORTS</prop>
<prop key="check*">PROPAGATION_SUPPORTS</prop>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
        </property>
    </bean>
        <!-- spring jdbc 事务-->
    <bean id="jdbcTemplate"
class="org.springframework.jdbc.core.simple.SimpleJdbcTemplate">
<constructor-arg>
<ref bean="myDataSource" />
</constructor-arg> </bean>
<bean id="jdbcTransactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource">
<!-- 更改为这个项目所用的datasource的名字-->
<ref bean="myDataSource" />
</property>
</bean> <bean id="baseTxService"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
abstract="true">
<property name="transactionManager">
<ref local="jdbcTransactionManager" />
</property>
<property name="proxyTargetClass">
<value>true</value>
</property>
<property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="save*">PROPAGATION_REQUIRED</prop>
<prop key="query*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="remove*">PROPAGATION_REQUIRED</prop>
<prop key="update*">PROPAGATION_REQUIRED</prop>
<prop key="delete*">PROPAGATION_REQUIRED</prop>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean> <!-- 通知Advice -->
<!--  <tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice> -->
<!--切点config  -->
<!-- <aop:config>
<aop:pointcut id="cut" expression="execution(* org.hw.demo.dao.impl.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="cut"/>
</aop:config> -->

<!-- Dao -->
<bean id="testDao" class="com.zyf.dao.impl.ZyfTestDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- Action -->
<bean name="/zyfTestAction" class="com.zyf.action.ZyfTestAction">
<property name="testDao" ref="testDao"></property>
</bean>
</beans>jsp<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'add.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->  </head>
  
  <body>
    <h1>添加新用户页面</h1>
    <form action="/zyfTestAction.do?method=addTest" method="post">
    <table border="0" cellpadding="0" cellspacing="0">
     <tr>
     <td>username:</td>
     <td><input type="text" name="username" /></td>
     </tr>
     <tr>
     <td>password:</td>
     <td><input type="password" name="password" /></td>
     </tr>
     <tr>
     <td colspan="2" align="center"">
     <input type="hidden" name="method" value="add"/>
     <input type="submit" value="添加"/>
     </td>
     </tr>
    </table>
    </form>
  </body>
</html>

解决方案 »

  1.   

    找不到什么action ??你这样贴,什么都不说,谁有功夫给你看啊
      

  2.   

    <action path="/zyfTestAction"
    type="org.springframework.web.struts.DelegatingActionProxy"
    parameter="method">
    </action>配置有问题
      

  3.   


     你在这个ZyfTestAction中输出看看是否进入方法里面了    如果没有说明页面错误或配置错误     如果进入方法 说明方法跳转页面找不到 配置错误
       
      

  4.   

    楼主你是代码贴错了吗?
    applicationContext.xml里怎么贴的还有struts-config.xml啊?
    applicationContext.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "struts-config_1_3.dtd" >
    <struts-config>
    <action-mappings>
    <action path="/zyfTestAction"
    type="org.springframework.web.struts.DelegatingActionProxy"
    parameter="method">
    </action>
    </action-mappings>
    <!--  
    <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
      <set-property property="contextConfigLocation" value="classpath:applicationContext.xml" />
      </plug-in>
     -->
    </struts-config>
      

  5.   

    spring+struts1不用在web.xml里面配置<listener>
    和<context-param>吧?