<?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"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-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/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">
<context:annotation-config />
<context:component-scan base-package="com.avit.mmsp" />
<tx:annotation-driven />
<!-- 使用ehcache时,修改此处即可) -->
<!-- <import resource="classpath:applicationContext-ehcache.xml"/> -->
<!-- 使用java-memcached时,修改此处即可) -->
<!-- <import resource="classpath:applicationContext-memcached.xml"/> -->
<!-- 使用xmemcached时,修改此处即可) -->
<!-- <import resource="classpath:applicationContext-xmemcached.xml" /> -->
<!-- AAA的扫描发送信息表定时任务 暂时关闭-->
<import resource="classpath:**/applicationContext-aaa-sendxml-quartz.xml" />
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
<value>classpath:sysconfig.properties</value>
</list>
</property>
</bean>
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close">
<property name="driverClass">
<value>${c3p0.jdbc.driverClass}</value>
</property>
<property name="jdbcUrl">
<value>${c3p0.jdbc.url}</value>
</property>
<property name="user">
<value>${c3p0.jdbc.username}</value>
</property>
<property name="password">
<value>${c3p0.jdbc.password}</value>
</property>
<!-- 初始化时获取的连接数,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->
<property name="initialPoolSize">
<value>${c3p0.jdbc.initialPoolSize}</value>
</property>
<!-- 连接池中保留的最小连接数。 -->
<property name="minPoolSize">
<value>${c3p0.jdbc.minPoolSize}</value>
</property>
<!-- 连接池中保留的最大连接数。Default: 15 -->
<property name="maxPoolSize">
<value>${c3p0.jdbc.maxPoolSize}</value>
</property>
<!-- 最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
<property name="maxIdleTime">
<value>${c3p0.jdbc.maxIdleTime}</value>
</property>
<!-- 当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
<property name="acquireIncrement">
<value>${c3p0.jdbc.acquireIncrement}</value>
</property>
<!-- 每60秒检查所有连接池中的空闲连接。Default: 0 -->
<property name="idleConnectionTestPeriod">
<value>${c3p0.jdbc.idleConnectionTestPeriod}</value>
</property>
<!-- 如果为true,则当连接获取失败时自动关闭数据源,除非重新启动应用程序 -->
<property name="breakAfterAcquireFailure">
<value>${c3p0.jdbc.breakAfterAcquireFailure}</value>
</property>
<!-- 连接池在获得新连接失败时重试的次数,如果小于等于0则无限重试直至连接获得成功 -->
<property name="acquireRetryAttempts">
<value>${c3p0.jdbc.acquireRetryAttempts}</value>
</property>
<!-- 连接池在获得新连接时的间隔时间,单位毫秒 -->
<property name="acquireRetryDelay">
<value>${c3p0.jdbc.acquireRetryDelay}</value>
</property>
<!--
<property name="testConnectionOnCheckout">
<value>false</value>
</property>
<property name="testConnectionOnCheckin">
<value>true</value>
</property>
-->
</bean>
<!-- <bean id="dataSource" class="org.logicalcobwebs.proxool.ProxoolDataSource">
<property name="driver"><value>${c3p0.jdbc.driverClass}</value></property>
<property name="driverUrl"><value>${c3p0.jdbc.url}</value> </property>
<property name="user" ><value>${c3p0.jdbc.username}</value></property>
<property name="password"><value>${c3p0.jdbc.password}</value></property>
<property name="simultaneousBuildThrottle"><value>${c3p0.jdbc.acquireIncrement}</value></property>
连接池中保留的最小连接数。
<property name="minimumConnectionCount"><value>${c3p0.jdbc.minPoolSize}</value></property>
连接池中保留的最大连接数。Default: 15
<property name="maximumConnectionCount" ><value>${c3p0.jdbc.maxPoolSize}</value></property>
最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0
<property name="maximumActiveTime"><value>${c3p0.jdbc.maxIdleTime}</value></property>
<property name="houseKeepingSleepTime"><value>30000</value></property>
<property name="houseKeepingTestSql"><value>select 1 from dual</value></property>
<property name="testBeforeUse"><value>true</value></property>
<property name="testAfterUse"><value>false</value></property>
<property name="verbose"><value>false</value></property>
<property name="trace"><value>false</value></property>
<property name="alias"><value>proxool.conn</value></property>
</bean> -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.format_sql">false</prop>
</props>
</property>
<property name="packagesToScan">
<list>
<value>com.avit.mmsp.aaa</value>
<value>com.avit.mmsp.common.message.bean</value>
<value>com.avit.mmsp.common.cachebean</value>
</list>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<!--<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes>
<tx:method name="get*" read-only="true" /> <tx:method name="query*" read-only="true"
/> <tx:method name="find*" read-only="true" /> <tx:method name="*" /> </tx:attributes>
</tx:advice> <aop:config proxy-target-class="true"> <aop:advisor pointcut="execution(*
com.avit.portal.asg.service.*.*(..))" advice-ref="txAdvice"/> </aop:config> -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true" />
<tx:method name="query*" read-only="true" />
<tx:method name="find*" read-only="true" />
<tx:method name="*" />
</tx:attributes>
</tx:advice>
<aop:config proxy-target-class="true">
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.services.*.*(..))"
advice-ref="txAdvice" />
<aop:advisor
pointcut="execution(* com.avit.mmsp.common.message.service.*.*(..))"
advice-ref="txAdvice" />
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.inteface.purchaseManager.services.*.*(..))"
advice-ref="txAdvice" />
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.inteface.authenticationManager.service.*.*(..)) and !execution(* com.avit.mmsp.aaa.inteface.authenticationManager.service.*.auth(..))"
advice-ref="txAdvice" />
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.inteface.chargeManager.service.*.*(..))"
advice-ref="txAdvice" />
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.inteface.deviceCheck.service.*.*(..))"
advice-ref="txAdvice" />
<aop:advisor pointcut="execution(* com.avit.mmsp.aaa.inteface.school.services.*.*(..))"
advice-ref="txAdvice" />
</aop:config>
</beans>
相关推荐
spring-boot-mybaits-xml:xml配置版本 spring-boot-mybatis-mulidatasource:springboot+mybatis多数据源最简解决方案 spring-boot-mybatis-annotation-mulidatasource:springboot+mybatis(注解版)多数据源最简...
spring配置文件实例
在本文中,我们将深入探讨Spring 3.0框架的配置示例,特别是关于文件上传和AJAX(异步JavaScript及XML)的注解使用。Spring框架是Java领域中广泛使用的轻量级应用框架,它提供了丰富的功能来简化企业级开发。在...
- `demo`目录中的示例可能包含一个简单的Spring配置文件(如`applicationContext.xml`),其中定义了ConnectionFactory和Destination。 - 生产者代码(Producer)可能会使用`JmsTemplate`发送消息到指定的...
Spring 3.1 支持多种类型的依赖注入,如属性注入(如上述示例),构造器注入,以及接口方法注入。此外,还可以通过 `<property>` 节点的子节点 `<ref>` 来引用其他 Bean,实现对象间的依赖关系。 ```xml ``` ...
5. **配置中心SpringCloud Config**:SpringCloud Config提供了一个集中化的外部配置服务,支持配置的实时刷新。在示例中,你可以看到如何设置配置服务器,以及如何在微服务中使用Config Client动态获取和更新配置。...
"spring简单示例"可能包含了一些基本的Spring配置和使用案例,让我们来深入探讨一下Spring框架的关键概念和功能。 1. **依赖注入**:Spring框架的核心特性之一是依赖注入,它允许开发者在运行时动态地将依赖关系...
下面是一个具体的Spring配置示例,展示了如何配置远程访问的数据源: ```xml <bean id="sysDB" class="org.springframework.jndi.JndiObjectFactoryBean"> t3://150.18.31.23:7902 weblogic.jndi....
spring-1 演示了使用setter方式及构造器方式创建bean,util:list标签创建集合,p标签简化配置 和依赖注入, 以及bean的autowire和继承与依赖,以及bean的作用域。 spring-2 演示了外部配置文件的引入(connection)...
Spring 框架是Java开发中的一个核心框架,主要用于企业级应用的开发,它提供了全面的编程和配置模型,使得开发更加简洁、高效。这个"spring 入门示例代码"是一个适合初学者理解并实践Spring框架基础知识的资源包。 ...
在“spring data 示例”中,我们可以探讨Spring Data的一些核心特性、主要组件以及如何在实际项目中应用它们。 1. **Spring Data JPA**: 这是Spring Data的一个子项目,专门用于Java Persistence API (JPA) 的集成...
### Spring Cloud 配置示例解析 #### 一、服务发现与注册 ##### Eureka Server Eureka 是 Netflix 的一个子项目,它主要用于服务发现。Eureka 服务器充当了一个服务注册中心,所有微服务实例都会向 Eureka 服务器...
- [spring-cloud-config-svn-refresh](https://github.com/ityouknow/spring-cloud-examples/tree/master/spring-cloud-config-svn-refresh):配置中心svn版本示例,客户端refresh版本示例 - [spring-cloud-config-...
本项目示例基于spring boot 最新版本(2.1.9)实现,Spring Boot、Spring Cloud 学习示例...多数Spring Boot应用只需要很少的Spring配置。 Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Sprin
连接MYSQL数据库,SPRING配置文件示例。
这个官方示例代码集是学习和理解Spring 3.0核心概念及其实现机制的理想资源。其中包含的"spring petstore"项目是一个经典的应用实例,常用于演示Spring框架的各种功能。 1. **IoC(Inversion of Control)容器**:...
这个示例项目包含了Spring MVC工程的所有必要组件和配置,旨在帮助开发者快速理解和实践Spring MVC的使用。 1. **Spring MVC架构**: Spring MVC采用Model-View-Controller(MVC)设计模式,将业务逻辑、数据处理...
这个名为"Spring示例"的压缩包文件很可能是包含了一些演示如何使用Spring框架的代码或教程。 首先,Spring的核心特性之一是控制反转(IoC)。IoC是指应用程序的控制权由传统的对象自身转移到容器中,容器负责创建、...
Spring Cloud 是一个全面的微服务解决方案,它集成了多种服务发现、配置管理、负载均衡、熔断机制等组件,帮助开发者快速构建分布式系统。在这个"spring cloud示例程序"中,你将找到13个精心设计的示例,涵盖了...
这个"Spring Boot示例"资源显然是为了帮助新手更好地理解和掌握Spring Boot的使用。让我们深入探讨Spring Boot的关键特性和一些核心概念。 1. **快速起步:** Spring Boot通过提供“起步依赖”(Starter POMs)使...