spring整合hibernate配置详解

   
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans    
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">  
      
      
          
          
            com.mysql.jdbc.Driver  
       
  
          
          
            jdbc:mysql://localhost:3306/eportal?useUnicode=  
                true&characterEncoding=gbk
  
       
  
          
          
            root  
       
  
          
          
            root  
       
  
          
          
            20  
       
  
          
          
            2  
       
  
          
          
            2  
       
  
          
          
            20  
       
  
   
  
      
            class="org.springframework.orm.  
hibernate3.LocalSessionFactoryBean">  
          
          
          
          
              
                com/eportal/ORM/News.hbm.xml  
                com/eportal/ORM/Category.hbm.xml  
                com/eportal/ORM/Memberlevel.hbm.xml  
                com/eportal/ORM/Cart.hbm.xml  
                com/eportal/ORM/Traffic.hbm.xml  
                com/eportal/ORM/Newsrule.hbm.xml  
                com/eportal/ORM/Merchandise.hbm.xml  
                com/eportal/ORM/Admin.hbm.xml  
                com/eportal/ORM/Orders.hbm.xml  
                com/eportal/ORM/Cartselectedmer.hbm.xml  
                com/eportal/ORM/Newscolumns.hbm.xml  
                com/eportal/ORM/Member.hbm.xml  
           
  
       
  
          
          
              
                  
                org.hibernate.dialect.MySQLDialect  
                  
                true  
                  
                50  
                50  
           
  
       
  
   
  
      
            class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
          
          
   
  
      
            class="org.springframework.transaction.interceptor.TransactionInterceptor">  
          
          
          
          
              
                  
                PROPAGATION_REQUIRED,readOnly  
                PROPAGATION_REQUIRED,readOnly  
                PROPAGATION_REQUIRED,readOnly  
                PROPAGATION_REQUIRED,readOnly  
                PROPAGATION_REQUIRED,readOnly  
                  
                PROPAGATION_REQUIRED  
           
  
       
  
   
  
      
            class="org.springframework.aop.framework.autoproxy.    
BeanNameAutoProxyCreator">  
          
          
              
                adminService  
                columnsService  
                newsService  
                crawlService  
                memberLevelService  
                memberService  
                categoryService  
                merService  
                cartService  
                ordersService  
                trafficService  
           
  
       
  
          
          
            true  
       
  
          
          
              
                transactionInterceptor  
           
  
       
  
      
      
      
          
   
  
      
      
          
   
  
      
      
          
   
  
      
      
      
          
   
  
      
      
          
   
  
      
            scope="prototype">  
          
   
  
      
            scope="prototype">  
          
   
  
      
            scope="prototype">  
          
          
   
  
      
            scope="prototype">  
          
          
   
  
      
   

你可能感兴趣的:(spring整合集成)