码迷,mamicode.com
首页 > 移动开发 > 详细

Spring配置文档 applicationContext.xml

时间:2014-09-24 16:29:37      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   os   使用   ar   

先记下来

applicationContext.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.2.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.2.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
           http://www.springframework.org/schema/tx 
           http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
    
    <import resource="applicationContext-aop.xml"/>


    <context:annotation-config />
    <context:component-scan base-package="com.practice" />
    <aop:aspectj-autoproxy proxy-target-class="true"/>
     
    
    <!--      *****dbcp*******
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver" />
        <property name="url"
            value="jdbc:sqlserver://127.0.0.1:1433;DatabaseName=HBM" />
        <property name="username" value="sa" />
        <property name="password" value="zxczxc" />
    </bean>
     -->
    
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
         <property name="driverClass" value ="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
         <property name="jdbcUrl" value="jdbc:sqlserver://127.0.0.1:1433;DatabaseName=HBM"/> 
         <property name="user" value="sa" />
         <property name="password" value="123456" />
         <property name="initialPoolSize" value="1" />  <!--初始化时获取的连接数,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->  
        <property name="minPoolSize" value="1" />  <!--连接池中保留的最小连接数。-->  
        <property name="maxPoolSize" value="100" />  <!--连接池中保留的最大连接数。Default: 15 -->  
        <property name="maxIdleTime" value="60" />  <!--最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->  
        <property name="acquireIncrement" value="5" />   <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->  
        <property name="idleConnectionTestPeriod" value="60" />  <!--每60秒检查所有连接池中的空闲连接。Default: 0 -->  
    </bean>
    
    <bean id="mySessionFacory"
        class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
         <property name="packagesToScan">
            <list>
                <value>com.practice.model</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">false</prop>
            </props>
        </property>
    </bean>

    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
        <property name="sessionFactory" ref="mySessionFacory"></property>
    </bean>
    
    
         
    
</beans>

applicationContext-aop.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.2.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.2.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
           http://www.springframework.org/schema/tx 
           http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
    
    
         <!-- AOP 方法的事务管理 -->
         <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
             <property name="sessionFactory" ref="mySessionFacory"/>
         </bean>
         <tx:advice id="txAdvice" transaction-manager="txManager">
          <tx:attributes>
            <tx:method name="add*" />
            <tx:method name="load*" read-only="true" propagation="REQUIRED"/>
            <tx:method name="get*" read-only="true" propagation="REQUIRED"/>
            <tx:method name="login*" read-only="true" propagation="REQUIRED"/>
          </tx:attributes>
            </tx:advice>
         
         <aop:config>
              <aop:pointcut id="transactionPointcut" expression="execution(* com.practice.action.*.*(..))"/>
              <aop:advisor pointcut-ref="transactionPointcut"  advice-ref="txAdvice"/>
         </aop:config>
         
        
    
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* com.practice.action..*.*(..))" />
        <aop:aspect id="logAspect" ref="mathodLog">
            <aop:before method="before" pointcut-ref="pointcut"/>
            <aop:after method="after" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>
 

</beans>

springMvc-servlet.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:p="http://www.springframework.org/schema/p"
        xmlns:mvc="http://www.springframework.org/schema/mvc" 
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:util="http://www.springframework.org/schema/util"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd  
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd  
        http://www.springframework.org/schema/util 
        http://www.springframework.org/schema/util/spring-util-3.2.xsd
        http://www.springframework.org/schema/aop  
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">

            <aop:aspectj-autoproxy/>  <!-- 不加这一句AOP切不了 -->
            <mvc:annotation-driven/><!-- 开始spring mvc的注解 -->  
            <context:component-scan base-package="com.practice"/>
            
            <!-- 这样根目录下面的resource的文件(.css,.js等)就不会被spring的DispatchServlet进行过滤 
                <mvc:resources location="/resources/" mapping="/resources/**"/>  -->  
                
                <!-- 完成请求和注解POJO的映射
           <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
                -->
                
           <!-- 对转向页面的路径解析。prefix:前缀, suffix:后缀 -->  
           <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
             <property name="prefix" value="/"></property>
             <property name="suffix" value=".jsp"></property>
           </bean>  
            
    </beans>

 

Spring配置文档 applicationContext.xml

标签:des   style   blog   http   color   io   os   使用   ar   

原文地址:http://www.cnblogs.com/Marvellous/p/3990500.html

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