码迷,mamicode.com
首页 > 其他好文 > 详细

ssh整合 配置文件集锦

时间:2015-09-16 21:33:00      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>SSH1</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
 
 
  <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>
  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

 

 

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
    <constant name="struts.objectFactory" value="spring" />
    <constant name="struts.devMode" value="true" />
    <package name="test" extends="struts-default">
    
        <action name="saveProduct" class="productAction" method="saveP">
            <result name="success" type="redirectAction">listAll</result>
        </action>
        <action name="findById" class="productAction" method="findById">
            <result>/listOne.jsp</result>
        </action>
        <action name="listAll" class="productAction" method="listAll">
                <result>/listAll.jsp</result>
        </action>
        <action name="update" class="productAction" method="update">
            <result >/changeOne.jsp</result>
        </action>
        <action name="change" class="productAction" method="change">
            <result type="redirectAction">listAll</result>
        </action>
        <action name="delete" class="productAction" method="delete">
            <result type="redirectAction">listAll</result>
        </action>
        <action name="addForm" >
            <result>/add.jsp</result>
        </action>
    </package>
</struts>    

applicationContext-dao.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: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-3.0.xsd
                     http://www.springframework.org/schema/context
                     http://www.springframework.org/schema/context/spring-context-3.0.xsd
                     http://www.springframework.org/schema/aop
                     http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
                     http://www.springframework.org/schema/tx
                     http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
   
       <!-- 配置sessionFactory & 引入hibernate.cfg.xml 文件 -->
   <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
           <property name="configLocation">
                   <value>classpath:hibernate.cfg.xml</value>
           </property>
   </bean>
   
   
   <!-- 配置Spring的声明式事务 -->
   
   <!-- 1.配置事务管理器 -->
   <bean id="transactionManager"  class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>   
   </bean>
   
   <!-- 2.配置事务属性,需要事务管理器 -->
   <tx:advice id="txAdvice" transaction-manager="transactionManager" >
           <tx:attributes>
               <!-- 只读事务,不涉及数据库的修改,对事物进行优化 提高效率 -->
               <tx:method name="*"/>
           </tx:attributes>
   </tx:advice>
   
   
   <!-- 3.配置事务切点,并把切点和事务属性关联起来 -->
   <aop:config>
       <!-- 配置切点 -->
       <aop:pointcut expression="execution(* com.zzk.ssh.dao.*.*.*(..))" id="txPointcut"/>
       
       <!-- 关联 -->
       <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
   
   </aop:config>
   
   
   <bean id="productDaoImpl" class="com.zzk.ssh.dao.impl.ProductDaoImpl">
           <property name="sessionFactory" ref="sessionFactory"></property>
   </bean>
    </beans>

 

applicationContext-action.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: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-3.0.xsd
                     http://www.springframework.org/schema/context
                     http://www.springframework.org/schema/context/spring-context-3.0.xsd
                     http://www.springframework.org/schema/aop
                     http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
                     http://www.springframework.org/schema/tx
                     http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
   
   
   <bean id="productAction" class="com.zzk.ssh.action.ProductAction" scope="prototype">
           <property name="pdao" ref="productDaoImpl"></property>
   </bean>
    </beans>

 

hibernate.cfg.xml

<?xml version=‘1.0‘ encoding=‘UTF-8‘?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

    <session-factory>
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/ssh1</property>
        <property name="connection.username">root</property>
        <property name="connection.password">root</property>
        <property name="dialect">
            org.hibernate.dialect.MySQLDialect
        </property>
        <property name="show_sql">true</property>
        <property name="format_sql">true</property>
        <property name="hbm2ddl.auto">update</property>
        <mapping resource="com/zzk/ssh/domain/Product.hbm.xml"/>
    </session-factory>

</hibernate-configuration>

 

Product.hbm.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.zzk.ssh.domain">
    <class name="Product" table="product_tab">
        <id
            name="id" type="java.lang.Integer" column="id"
        >
            <generator class="native"></generator>
        </id>
        <property name="pname" type="java.lang.String" column="pname"></property>
        <property name="pnum" type="java.lang.Integer" column="pnum"></property>
        <property name="pprice" type="java.lang.Integer" column="pprice"></property>
    </class>
</hibernate-mapping>

 

ssh整合 配置文件集锦

标签:

原文地址:http://www.cnblogs.com/gogogogogo/p/4814373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!