Spring容器配置文件(主从数据库)


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa" 
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-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/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/jee
            http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
            http://www.springframework.org/schema/tx
            http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
            http://www.springframework.org/schema/data/jpa
            http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
    
    
    
    
   
    
    
    
                     expression="org.springframework.stereotype.Controller" />
    

    
    
    
             init-method="init" destroy-method="close">
                     value="jdbc:mysql://127.0.0.1:3307/telecomservice?characterEncoding=utf-8&allowMultiQueries=true" />
        
        

        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        
        

        
            
                
                
            

        

    
    
    
    
             init-method="init" destroy-method="close">
                     value="jdbc:mysql://127.0.0.1:3308/telecomservice?characterEncoding=utf-8&allowMultiQueries=true" />
        
        

        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        
        

        
            
                
                
            

        

    
    
    
    
        
        
        
    

    
    
        
        
    

    
    
    
             class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        
        
        
            
                org.telecom.billingservice.bean
                org.telecom.billingservice.administratormag
                org.telecom.billingservice.authoritymag
                org.telecom.billingservice.billmag
                org.telecom.billingservice.logmag
                org.telecom.billingservice.publicservicemag
                org.telecom.billingservice.selfservicemag
                org.telecom.billingservice.statementmag
                org.telecom.billingservice.tariffmag
                org.telecom.billingservice.usermag
            

        

        
        
            
        

        
            
                org.hibernate.dialect.MySQLDialect
                true
                true
                true
                
                auto
                
                true
            

        

    

    
        
        
    

    
    
        
        
    

    
        
            
                
                
                
                
            

        
        
    

    
    
    
    
    

    
    
        
    

    
             entity-manager-factory-ref="localContainerEntityManagerFactoryBean">

    
    
    

    
    
    

你可能感兴趣的:(代码)