Spring.xml详解

xml version="1.0"encoding="UTF-8"?>

<beans

beans —— xml文件的根节点。

xmlns="http://www.springframework.org/schema/beans"

xmlns ——是XML NameSpace的缩写,因为XML文件的标签名称都是自定义的,自己写的和其他人定义的标签很有可能会重复命名,而功能却不一样,所以需要加上一个namespace来区分这个xml文件和其他的xml文件,类似于java中的package。

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:xsi ——是指xml文件遵守xml规范,xsi全名:xml schema instance,是指具体用到的schema资源文件里定义的元素所准守的规范。即/spring-beans-2.0.xsd这个文件里定义的元素遵守什么标准。

xmlns:tx="http://www.springframework.org/schema/tx"

xmlns:tx — -启动声明事务时的命名空间

xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:top - -启动AOP功能时的命名空间

xmlns:context="http://www.springframework.org/schema/context"

xmlns:context:是启动自动扫描或注解装配时的命名空间

xsi:schemaLocation="

xsi:schemaLocation——是指,本文档里的xml元素所遵守的规范,schemaLocation属性用来引用(schema)模式文档,解析器可以在需要的情况下使用这个文档对XML实例文档进行校验。它的值(URI)是成对出现的,第一个值表示命名空间,第二个值则表示描述该命名空间的模式文档的具体位置,两个值之间以空格分隔。

http://www.springframework.org/schema/beans

http://www.springframework.org/schema/beans/spring-beans-4.1.xsd

http://www.springframework.org/schema/tx

http://www.springframework.org/schema/tx/spring-tx-4.1.xsd

http://www.springframework.org/schema/aop

http://www.springframework.org/schema/aop/spring-aop-4.1.xsd">

配置数据源========================================= -->

<beanid="dataSource"class="com.mchange.v2.c3p0.ComboPooledDataSource">

<propertyname="driverClass"value="${driverClassName}"/>

<propertyname="jdbcUrl"value="${jdbc.url}"/>

<propertyname="user"value="${jdbc.username}"/>

<propertyname="password"value="${jdbc.password}"/>

请求超时时间-->

<propertyname="checkoutTimeout"value="30000"/>

60秒检查所有连接池中的空闲连接。默认值: 0,不检查-->

<propertyname="idleConnectionTestPeriod"value="30"/>

连接数据库连接池最大空闲时间-->

<propertyname="maxIdleTime"value="30"/>

连接池初始化连接数-->

<propertyname="initialPoolSize"value="5"/>

<propertyname="minPoolSize"value="5"/>

<propertyname="maxPoolSize"value="20"/>

当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。默认值: 3 -->

<propertyname="acquireIncrement"value="5"/>

bean>

MyBatis完美整合,不需要mybatis的配置映射文件-->

<beanid="sqlSessionFactory"class="org.mybatis.spring.SqlSessionFactoryBean">

<propertyname="dataSource"ref="dataSource"/>

自动扫描mapping.xml文件-->

<propertyname="mapperLocations"value="classpath*:com/xunyou/mapping/*.xml"/>

bean>

接口所在包名,Spring会自动查找其下的类-->

<beanclass="org.mybatis.spring.mapper.MapperScannerConfigurer">

<propertyname="basePackage"value="com.xunyou.mapper"/>

<propertyname="sqlSessionFactoryBeanName"value="sqlSessionFactory"/>

bean>

事务管理)transaction manager, use JtaTransactionManager for global tx -->

<beanid="transactionManager"

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

<propertyname="dataSource"ref="dataSource"/>

bean>

拦截器方式配置事物-->

<tx:adviceid="transactionAdvice"transaction-manager="transactionManager">

<tx:attributes>

<tx:methodname="add*"propagation="REQUIRED"/>

<tx:methodname="append*"propagation="REQUIRED"/>

<tx:methodname="insert*"propagation="REQUIRED"/>

<tx:methodname="save*"propagation="REQUIRED"/>

<tx:methodname="update*"propagation="REQUIRED"/>

<tx:methodname="modify*"propagation="REQUIRED"/>

<tx:methodname="edit*"propagation="REQUIRED"/>

<tx:methodname="delete*"propagation="REQUIRED"/>

<tx:methodname="remove*"propagation="REQUIRED"/>

<tx:methodname="repair"propagation="REQUIRED"/>

<tx:methodname="delAndRepair"propagation="REQUIRED"/>

<tx:methodname="get*"propagation="SUPPORTS"/>

<tx:methodname="find*"propagation="SUPPORTS"/>

<tx:methodname="load*"propagation="SUPPORTS"/>

<tx:methodname="search*"propagation="SUPPORTS"/>

<tx:methodname="datagrid*"propagation="SUPPORTS"/>

<tx:methodname="*"propagation="SUPPORTS"/>

tx:attributes>

tx:advice>

<aop:config>

解释一下(* com.evan.crm.service.*.*(..))中几个通配符的含义:

第一个* ——通配任意返回值类型

第二个* ——通配包com.evan.crm.service下的任意class

第三个* ——通配包com.evan.crm.service下的任意class的任意方法

第四个.. ——通配方法可以有0个或多个参数

<aop:pointcutid="transactionPointcut"expression="execution(* com.xunyou.serviceManagerImpl.*.*(..))"/>

<aop:advisorpointcut-ref="transactionPointcut"advice-ref="transactionAdvice"/>

aop:config>

beans>

你可能感兴趣的:(Spring.xml详解)