SSM整合之applicationContext.XML配置文件详解


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">


   
   
            class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
            class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />


   
            destroy-method="close">
       
         
                    value="jdbc:mysql://127.0.0.1:3066/TESTDB?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true" />
       
       
        
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
   

   
   
       
       
       
       
           
               
                classpath:com/parry/test/dao/config/*.xml
           

       

   

   
   
       
   

   
       
   

   
            class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       
   

   
            lazy-init="false" />


   
   
   
   
            class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
       
       
   

   
   
       
       
   

   
   
       
           
               
           

       

   

   
   
   

你可能感兴趣的:(Spring)