`

spring配置文件 applicationContext

阅读更多
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:jaxws="http://cxf.apache.org/jaxws"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
	http://www.springframework.org/schema/tx 
	http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-2.5.xsd
	http://www.springframework.org/schema/aop 
	http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
	http://cxf.apache.org/jaxws
	http://cxf.apache.org/schemas/jaxws.xsd">
	
	
    <!-- 指定数据库配置信息,读取jdbc.propertiesp配置文件 -->
	<bean id="propertyConfigurer"
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<value>classpath:jdbc.properties</value>
		</property>
	</bean>
    
    <!-- 指定数据源 使用Bonecp连接池   -->
   <bean id="dataSourceBonecp"  class="com.jolbox.bonecp.BoneCPDataSource" destroy-method="close"> 
	   <property name="driverClass"><value>${jdbc.driverClassName}</value></property> 
	   <property name="jdbcUrl"><value>${jdbc.url}</value></property> 
	   <property name="username"><value>${jdbc.username}</value></property> 
	   <property name="password"><value>${jdbc.password}</value></property> 
	   <!-- 每60秒检查所有连接池中的空闲连接    --> 
	   <property name="idleConnectionTestPeriod"><value>{idleConnectionTestPeriod}</value></property>
	   <!-- 设置连接空闲时间(分钟) --> 
	   <property name="idleMaxAge"><value>{idleMaxAge}</value></property> 
	   <!--  设置连接池在每个分区中的最大连接数  --> 
	   <property name="maxConnectionsPerPartition"><value>{maxConnectionsPerPartition}</value></property> 
	   <!--  设置连接池设在每个分区中的最小连接数     --> 
	   <property name="minConnectionsPerPartition"><value>{minConnectionsPerPartition}</value></property> 
	   <!-- 设置分区(设置 3个分区) --> 
	   <property name="partitionCount"><value>{partitionCount}</value></property>   
	   <!-- 当连接池中的连接耗尽的时候 BoneCP一次同时获取的连接数 --> 
	   <property name="acquireIncrement"><value>{acquireIncrement}</value></property>  
	   <!-- 连接释放处理  --> 
	   <!-- 每个分区释放链接助理进程的数量,默认值:3,除非你的一个数据库连接的时间内做了很多工作,不然过多的助理进程会影响你的性能 -->
	   <property name="releaseHelperThreads"><value>{releaseHelperThreads}</value></property>  
	   <property name="statementsCachedPerConnection"><value>{statementsCachedPerConnection}</value></property>  
	   <!-- 设置获取connection超时的时间。这个参数默认为Long.MAX_VALUE;单位:毫秒。 -->
	   <property name="connectionTimeout"><value>{connectionTimeout}</value></property> 
   </bean> 
   
    <!-- 指定数据源 使用C3p0连接池   -->
    <bean id="dataSourceC3p0" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
		<property name="driverClass"><value>${jdbc.driverClassName}</value></property>
		<property name="jdbcUrl"><value>${jdbc.url}</value></property>
		<property name="user"><value>${jdbc.username}</value></property>
		<property name="password"><value>${jdbc.password}</value></property>
		<property name="acquireIncrement"><value>${acquireIncrement}</value></property>
		<property name="checkoutTimeout"><value>${checkoutTimeout}</value></property>
		<property name="maxPoolSize"><value>${maxPoolSize}</value></property>
		<property name="minPoolSize"><value>${minPoolSize}</value></property>
		<property name="initialPoolSize"><value>${initialPoolSize}</value></property>
	</bean>
    
    
    
    <!-- 基于hibernate注解的sessionFactory  -->
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
	     <property name="sessionFactory" ref="dataSourceC3p0" />
		 <property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${hibernate.dialect}</prop>
				<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
			</props>
		</property>
		<!-- 指定映射文件的位置,可以配置多个配置文件 -->
	     <property name="packagesToScan">
	         <list><value>com.ssh.model.*</value></list>
	     </property>
	</bean>
	
	 
    <!-- 基于hibernate的事务管理器 -->  
    <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
        <property name="sessionFactory" ref="sessionFactory" />  
    </bean>  
    <!-- 采用注解形式的声明式事务管理 -->  
    <tx:annotation-driven transaction-manager="txManager" proxy-target-class="false"/> 
	<!-- proxy-target-class="true" 表示采用动态代理类来管理事物,如果是false表示采用接口代理来管理事物 默认值为false-->	
		
	<aop:config>
	      <!-- 配置一个切入点,匹配所有Service包下的类执行的所有方法 -->
		<aop:pointcut id="comAOP"
			expression="execution(* com.ssh.sevice..*.*(..))" />
		<!-- 指定在txAdvice切入点应用txAdvice事务切面 -->
		<aop:advisor advice-ref="txAdvice" pointcut-ref="comAOP" />
    </aop:config>	
		
	<!-- 配置事务切面Bean,指定事务管理器 -->
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<!-- 用于配置详细的事务语义 -->
		<tx:attributes>
			<!-- 所有以'get'开头的方法是read-only的 -->
			<tx:method name="get*" read-only="true" />
			<!-- 所有以'find'开头的方法是read-only的 -->
			<tx:method name="find" read-only="true" />
			<!-- 所有以'query'开头的方法是read-only的 -->
			<tx:method name="query" read-only="true" />
			<!-- 其他方法使用默认的事务设置 -->
			<tx:method name="*" rollback-for="java.lang.Exception" />
		</tx:attributes>
	</tx:advice>	
	
    
   
    <!-- 启用自动扫描,指定Bean扫描的包,多个包逗号隔开,任何标注了@Component,@Controller,@Service,@Repository的类,
     都会被自动识别为bean.使用annotation 自动注册bean,并保证@Required,@Autowired的属性被注入-->
	<context:component-scan base-package="com.ssh">
		<context:include-filter type="annotation"
			expression="org.aspectj.lang.annotation.Aspect" />
	</context:component-scan>
	
</beans>

 

分享到:
评论

相关推荐

    Spring配置文件ApplicationContext

    Spring配置文件ApplicationContext,内容齐全,有需要的可以下载。

    Spring MVC开发配置文件 applicationContext

    Spring Web MVC开发 xml配置文件格式,无bean之类 Spring Web MVC开发配置文件 applicationContext

    spring配置文件加密实现

    为了保护这些敏感信息不被非法访问或篡改,我们可以对Spring配置文件进行加密处理。本文将深入探讨如何在Java环境中,利用TE网络技术实现Spring配置文件的加密。 首先,我们需要理解Spring配置文件的基本结构。...

    spring配置文件详解

    Spring 配置文件通常以XML文件的形式存在,文件名通常为applicationContext.xml。 在 Spring 配置文件中,我们可以定义各种类型的Bean对象,例如数据源、Session工厂、Hibernate模板、DAO对象、Service对象等等。...

    spring2.5的applicationContext配置文件

    在Spring框架中,`applicationContext.xml`是核心的配置文件,它定义了bean的实例化、依赖注入、服务的装配以及整个应用上下文的行为。在Spring 2.5版本中,这个配置文件引入了许多增强的功能,提升了开发效率和灵活...

    spring配置文件模板

    本文将深入探讨Spring配置文件`applicationContext.xml`中的关键知识点。 首先,我们来理解`applicationContext.xml`的结构和作用。这个文件是Spring IoC容器的基础,它定义了一系列Bean的定义,这些Bean就是Spring...

    spring 配置文件详解

    Spring 配置文件是一个或多个标准的 XML 文档,applicationContext.xml 是 Spring 的默认配置文件,当容器启动时找不到指定的配置文档时,将会尝试加载这个默认的配置文件。 在 Spring 配置文件中,主要包含了以下...

    Spring获取ApplicationContext对象工具类的实现方法

    在Spring 3.0及以后的版本中,还引入了AnnotationConfigApplicationContext,这是一个不依赖XML配置文件,而是通过Java配置类来配置的ApplicationContext实现。这种方式可以和Java的注解相结合,提供更加强大的配置...

    Spring动态加载配置文件

    接下来,一旦检测到Spring配置文件发生变化,我们需要重新加载配置文件。这可以通过Spring的`ApplicationContext`的`refresh()`方法来实现。`refresh()`会重新初始化Bean工厂,读取新的配置信息,并更新所有Bean的...

    Spring配置文件集合

    9. `applicationContext.xml`: 这是Spring容器的主配置文件,用于定义Bean的实例化、依赖注入、bean之间的关系等。它是Spring应用上下文的基础,包含了所有业务对象和服务的配置。 通过这些配置文件的组合,我们...

    Spring配置文件spring-context.zip

    "Spring配置文件spring-context.zip"包含了Spring框架中的上下文配置,这是Spring管理对象及服务的核心。 `applicationContext.xml`是Spring应用上下文的主配置文件,它定义了bean的声明、bean之间的依赖关系以及...

    Spring 2.5-applicationContext.xml提示信息的配置

    在Spring框架中,`applicationContext.xml`是应用上下文的核心配置文件,用于定义bean的创建、依赖关系以及各种服务的配置。这篇博文“Spring 2.5 - applicationContext.xml提示信息的配置”主要探讨了如何在Spring ...

    Spring框架配置文件

    Spring框架配置文件applicationContext.xml

    spring配置文件详细介绍

    下面是对Spring配置文件的详细介绍。 首先,Spring配置文件通常是以`.xml`为扩展名的文件,例如`beans.xml`。这些文件存储在项目的`src/main/resources`目录下,以便在运行时被自动加载。Spring容器...

    如何加载jar包中的spring配置文件

    在SSM整合中,Spring配置文件通常包括Spring MVC的配置(如`dispatcher-servlet.xml`)、Spring的根上下文配置(如`applicationContext.xml`)以及MyBatis的配置(如`mybatis-config.xml`)。如果某些配置文件(比如...

    xbean简化spring配置文件.doc

    xbean简化spring配置文件 xbean是 Apache Geronimo 项目的一个子项目,旨在简化Spring配置文件的编写。下面我们来详细介绍如何使用xbean简化Spring配置文件。 在Spring之前,我们使用Factory模式来管理bean。例如...

    struts+spring+hibernate架构

    &lt;br&gt;使用方法: (1)在oracle数据库中运行数据库脚本文件cnc.sql. (2)用eclipse(或其它开发工具)直接导入工程. (3)将spring配置文件applicationContext.xml中数据库连接地址改为您自已的地址。...

    Spring中ApplicationContext加载机制

    通过以上配置,Web 容器会自动加载 /WEB-INF/applicationContext.xml 初始化 ApplicationContext 实例,如果需要指定配置文件位置,可通过 context-param 加以指定: ```xml &lt;param-name&gt;contextConfigLocation ...

    大型项目的struts,spring配置文件

    接下来是Spring的配置文件,通常为`applicationContext.xml`。这个文件主要管理Bean的定义和依赖关系。在大型项目中,Spring的IoC(Inversion of Control,控制反转)容器管理着所有服务、DAO(数据访问对象)、业务...

Global site tag (gtag.js) - Google Analytics