**html
struts.xml
**java
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<!--禁用動態訪問 user!add.action-->
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>
<!-- 開發模式下使用,這樣能夠打印出更詳細的錯誤信息 -->
<constant name="struts.devMode" value="true"/>
<!-- 設置url請求後綴 -->
<constant name="struts.action.extention" value="do,action,html,htm"/>
<!--把主題配置成simple-->
<constant name="struts.ui.theme" value="simple"/>
<!-- 指定Web應用的默認編碼集,至關於調用HttpServletRequest的setCharacterEncoding方法 -->
<constant name="struts.i18n.encoding" value="UTF-8" />
<!-- 設置瀏覽器是否緩存靜態內容,默認值爲true(生產環境下使用),開發階段最好關閉 -->
<constant name="struts.serve.static.browserCache" value="false" />
<!-- 當struts的配置文件修改後,系統是否自動從新加載該文件,默認值爲false(生產環境下使用),開發階段最好打開 -->
<constant name="struts.configuration.xml.reload" value="true" />
<!-- spring 託管 -->
<constant name="struts.objectFactory" value="spring" />
<!-- 該屬性指定處理 MIME-type multipart/form-data,文件上傳 -->
<constant name="struts.multipart.parser" value="cos" />
<constant name="struts.multipart.parser" value="pell" />
<constant name="struts.multipart.parser" value="jakarta" />
<!-- 指定上傳文件時的臨時目錄,默認使用 javax.servlet.context.tempdir -->
<constant name="struts.multipart.saveDir" value="/tmpuploadfiles" />
<!-- 該屬性指定Struts 2文件上傳中整個請求內容容許的最大字節數 -->
<constant name="struts.multipart.maxSize" value="2097152" />
<!-- 設置是否支持動態方法調用,true爲支持,false不支持. -->
<constant name="struts.enable.DynamicMethodInvocation" value="true" />
<package name="" extends="struts-default" namespace="/">
</package>
</struts>
hibernate.cfg.xmlmysql
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory name="">
<!--設置方言-->
<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
<!--是否打印sql語句。-->
<property name="show_sql">true</property>。
<!--是否格式化sql語句。-->
<property name="format_sql">true</property>
<!--設置更新數據庫。-->
<property name="hbm2ddl.auto">update</property>
<!--設置被映射的bean類。-->
<mapping resource="com/cloud/sys/domain/User.hbm.xml" />
<!--設置url。-->
<property name="connection.url">jdbc:mysql://localhost:3306/oa</property>
<!--設置數據庫帳號。-->
<property name="connection.username">root</property>
<!--設置數據庫密碼。-->
<property name="connection.password">root</property>
<!--設置數據庫驅動。-->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<!--設置c3p0鏈接池。-->
<property name="hibernate.connection.provider_class">
org.hibernate.connection.C3P0ConnectionProvider
</property>
<!-- 指定鏈接池裏最大鏈接數 -->
<property name="hibernate.c3p0.max_size">20</property>
<!-- 指定鏈接池裏最小鏈接數 -->
<property name="hibernate.c3p0.min_size">1</property>
<!-- 指定鏈接池裏鏈接的超時時長 -->
<property name="hibernate.c3p0.timeout">5000</property>
<!-- 指定鏈接池裏最大執行命令的個數 -->
<property name="hibernate.c3p0.max_statements">100</property>
<!-- 指定鏈接池裏空閒測試時間 -->
<property name="hibernate.c3p0.idle_test_period">3000</property>
<!-- 指定鏈接池裏每次增長的鏈接數 -->
<property name="hibernate.c3p0.acquire_increment">2</property>
<!-- 指定鏈接池每次都驗證鏈接是否可用 -->
<property name="hibernate.c3p0.validate">false</property>
<!-- 設置獲得的session爲線程類型的 -->
<property name="hibernate.current_session_context_class">thread</property>
</session-factory">
</hibernate-configuration>
applicationContext.xmlweb
<?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:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 配置註解掃描 -->
<context:component-scan base-package="zhujie"></context:component-scan>
<!-- 建立sessionfactory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property value="classpath:hibernate.cfg.xml" name="configLocation"/> //引進hibernate
</bean>
<!-- 配置事務管理器 -->
<bean class="org.springframework.orm.hibernate3.HibernateTransactionManager" id="txManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!-- 配置事務加強 (xml的方式來配置事務)-->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="find*" read-only="true"/>
<tx:method name="get*" read-only="true"/>
<tx:method name="save*" propagation="REQUIRED"/>
<tx:method name="update*" propagation="REQUIRED"/>
<tx:method name="delete*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!-- 配置AOP -->
<aop:config>
<!-- 切入點-->
<aop:pointcut expression="execution(* com.cloud.*.service.impl.*.*(..))" id="pt"/>
<!-- 切面 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt"/>
</aop:config>
<!-- 引入外部spring文件 -->
<import resource="com/cloud/conf/test-spring.xml"/>
<!-- 設置用註解的方式來開啓事務 ( 須要在須要開啓的類上面加上@Transactional )-->
<tx:annotation-driven transaction-manager="txManager" proxy-target-class="true" />
</beans>
spring 2.5 中除了提供 @Component
註釋外,還定義了幾個擁有特殊語義的註釋,它們分別是:@Repository、@Service 和 @Controller。spring
@Service用於標註業務層組件sql
@Controller用於標註控制層組件(如struts中的action)數據庫
@Repository用於標註數據訪問組件,即DAO組件express
@Component泛指組件,當組件很差歸類的時候,咱們可使用這個註解進行標註。apache
//=====================================瀏覽器
@Autowired與@Resource的區別
<!--strtus2的過濾器配置-->
<filter>
<filter-name>struts</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!--spring的監聽器配置-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<description>spring監聽器</description>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
user.hbm.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.cloud.sys.domain">
<class name="User" table="t_user">
<id name="id" column="u_id">
<generator class="native"/>
</id>
<property name="account"/>
<property name="password"/>
<property name="gender"/>
<property name="country"/>
<property name="name"/>
<property name="age"/>
<property name="birthday"/>
</class>
</hibernate-mapping>
在applicationContext.xml中配置以下本來在hibernate.cfg.xml中須要配置的信息,在spring中配置後hibernate.cfg.xml 可刪除。
二、 db.properties
jdbcUrl=jdbc:mysql://localhost:3306/itcastTax?useUnicode=true&characterEncoding=utf8
driverClass=com.mysql.jdbc.Driver
user=root
password=root
initialPoolSize=10
maxPoolSize=30
<!-- 導入外部的properties配置文件 -->
<context:property-placeholder location="classpath:db.properties" />
<!-- 配置c3p0數據源 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
<property name="jdbcUrl" value="${jdbcUrl}"></property>
<property name="driverClass" value="${driverClass}"></property>
<property name="user" value="${user}"></property>
<property name="password" value="${password}"></property>
<!--初始化時獲取三個鏈接,取值應在minPoolSize與maxPoolSize之間。Default: 3 -->
<property name="initialPoolSize" value="${initialPoolSize}"></property>
<!--鏈接池中保留的最小鏈接數。Default: 3 -->
<property name="minPoolSize" value="3"></property>
<!--鏈接池中保留的最大鏈接數。Default: 15 -->
<property name="maxPoolSize" value="${maxPoolSize}"></property>
<!--當鏈接池中的鏈接耗盡的時候c3p0一次同時獲取的鏈接數。Default: 3 -->
<property name="acquireIncrement" value="3"></property>
<!--最大空閒時間,1800秒內未使用則鏈接被丟棄,若爲0則永不丟棄。Default: 0-->
<property name="maxIdleTime" value="1800"></property>
</bean>
<!--配置sessionFactory,並將dataSource指向c3p0建立的dataSource:-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="javax.persistence.validation.mode">none</prop>
</props>
</property>
<property name="mappingLocations">
<list>
<value>classpath:cn/itcast/nsfw/*/entity/*.hbm.xml</value>
<value>classpath:cn/itcast/test/entity/*.hbm.xml</value>
</list>
</property>
</bean>
<!--配置spring事務管理:-->
<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<!—事務通知-->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="find*" read-only="true" />
<tx:method name="get*" read-only="true" />
<tx:method name="load*" read-only="true" />
<tx:method name="list*" read-only="true" />
<tx:method name="search*" read-only="true" />
<tx:method name="*" rollback-for="Throwable" />
</tx:attributes>
</tx:advice>
<!—配置須要進行事務控制的類 -->
<aop:config>
<aop:pointcut id="serviceOperation" expression="bean(*Service)" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="serviceOperation" />
</aop:config>
【注意:上面的pointcut expression 表示攔截以Service結尾的bean,或者可寫成
execution(* cn.itcast..service.impl.*.*(..))】