zoukankan      html  css  js  c++  java
  • Spring配置文档 applicationContext.xml

    先记下来

    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>
  • 相关阅读:
    存储过程和触发器
    RuPengWang项目
    短信验证
    Lucene.Net 站内搜索
    Quartz 定时任务(含Redis)
    网上支付(支付宝/银联)
    iOS 图片选择的路径处理(转)
    iOS 使用cocoaPods总结 ----摩天居士博客
    iOS 开发之本地化 国际化
    iOS 8 Xcode6 设置Launch Image 启动图片<转>
  • 原文地址:https://www.cnblogs.com/Marvellous/p/3990500.html
Copyright © 2011-2022 走看看