必威体育Betway必威体育官网
当前位置:首页 > IT技术

ApplicationContext.xml

时间:2019-10-30 16:15:51来源:IT技术作者:seo实验室小编阅读:65次「手机版」
 

applicationcontext.xml

<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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<context:component-scan
		base-package="com.alibaba">
		<!--只扫描控制器。 -->
		<context:exclude-filter type="annotation"
			expression="org.springframework.stereotype.controller" />
	</context:component-scan>
	<context:property-placeholder
		location="classpath:dbconfig.properties" />
	<bean id="datasource"
		class="com.mchange.v2.c3p0.CombopooledDataSource">
		<property name="jdbcUrl" value="${jdbc.jdbcUrl}">
		</property>
		<property name="driverClass" value="${jdbc.driverClass}"></property>
		<property name="user" value="${jdbc.user}"></property>
		<property name="password" value="${jdbc.password}"></property>
	</bean>

	<bean id="sqlsessionfactory"
		class="org.myBATis.spring.SqlSessionFactoryBean">
		<property name="configLocation"
			value="classpath:mybatis-config.xml"></property>
		<property name="dataSource" ref="dataSource"></property>
		<property name="mAPPerLocations"
			value="classpath:mapper/*.xml"></property>
	</bean>
	<bean id="sqlSessionTemplate"
		class="org.mybatis.spring.SqlSessionTemplate">
		<constructor-arg name="sqlSessionFactory"
			ref="sqlSessionFactory"></constructor-arg>
		<constructor-arg name="executorType" value="BATCH"></constructor-arg>

	</bean>


	<bean class="org.mybatis.spring.mapper.Mapperscannerconfigurer">

		<property name="basePackage" value="com.alibaba.dao"></property>
	</bean>
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

		<property name="dataSource" ref="dataSource"></property>
	</bean>
	<aop:config>
		<aop:pointcut
			expression="execution(* com.alibaba.service..*(..))" id="txPoint" />

		<aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint" />

	</aop:config>
	<tx:advice id="txAdvice"
		transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="*" />
			<tx:method name="get*" read-only="true" />
		</tx:attributes>
	</tx:advice>
</beans>

文章最后发布于: 2019-03-02 20:00:49

相关阅读

简单地利用FOP工具把XML文件转换PDF

package com.cisetech.put.utils.fop; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileOutpu

教你创建Google网站地图Sitemap.xml

Sitemap.xml是google搞出来的,也就是网站地图,不过这个网站地图是用xml写的,而且要按google的标准来写,并且要将写出来的这个文件site

如何找到Spring的applicationContext.xml配置文件

目录 一、文章前言 二、applicationContext.xml查找 一、文章前言 Spring需要加载配置文件applicationContext.xml,那么自带的jar

解析XML文件(一)

解析XML(一) 在进行XML文件的解析之前,我们简单介绍下什么是XML,以及XML在企业中有哪些作用。(本文建立在不使用数据库的前提之下,如

C#操作xml文件:使用XmlDocument 实现读取和写入

XML文件是一种常用的文件格式,例如WinForm里面的app.config以及Web程序中的web.config文件,还有许多重要的场所都有它的身影。Xml是

分享到:

栏目导航

推荐阅读

热门阅读