`
xiaotao.2010
  • 浏览: 216671 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

备份配置 - spring

阅读更多
<?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"
		xsi:schemaLocation="
			http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
        
        <aop:aspectj-autoproxy/>
        <tx:annotation-driven transaction-manager="txManager"/>

        

        
        
        
        
        
        <import resource="applicationContext-dept.xml"/>
        
        <bean id="impl1" class="com.ibm.springtest.ioc.Impl1" depends-on="conn" scope="singleton" init-method="myInit" destroy-method="myDestroy">
             <lookup-method bean="conn" name="getConn"/>
             <property name="str" value="china"></property>
            
             <property name="list">
                    <list>
                        <value>111111111</value>
                        <value>sssssssss</value>
                    </list>
             </property>
             <property name="map">
                    <map>
                          <entry>
                               <key><value>a1</value></key>
                               <value>a11111111111</value>
                          </entry>
                          <entry>
                               <key><value>a2</value></key>
                               <ref bean="conn"/>
                          </entry>
                    </map>
             </property>
             <property name="ms" ref="messageSource"></property>
             
        </bean>
        
        <bean id="conn" class="com.ibm.springtest.ioc.DbConn" scope="prototype" lazy-init="true"></bean>
        <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
            <property name="basenames">
            <list>
                 <value>abc</value>
            </list>
            </property>
            
        </bean>
        
        <bean id="myTarget" class="com.ibm.springtest.ht.MyTarget"/>
        <bean id="myAdvice" class="com.ibm.springtest.ht.MyAdvice"/>
        
<!--          
        <aop:config >

				  <aop:aspect id="myAspect" ref="myAdvice">
				    <aop:pointcut id="myPointcut"
				        expression="execution(* com.ibm.springtest.ht.MyTarget.test(..))"/>
				    <aop:after
				       pointcut-ref="myPointcut"
				       method="ttt"/>
				  </aop:aspect>
				  
				  
				  <aop:aspect id="myAspect2" ref="myAdvice">
				    <aop:pointcut id="myPointcut2"
				        expression="execution(* com.ibm.springtest.ht.MyTarget.t(..))"/>
				    <aop:before
				       pointcut-ref="myPointcut2"
				       method="fun"/>
				  </aop:aspect>
		
		</aop:config>

-->        
			    <bean id="myDataSource" destroy-method="close" class="org.apache.commons.dbcp.BasicDataSource">
			        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
			        <property name="url" value="jdbc:mysql://localhost:3306/mydb"/>
			        <property name="username" value="root"/>
			        <property name="password" value="root"/>
			    </bean>

                 <bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
					    <property name="dataSource" ref="myDataSource"/>
					    <property name="mappingResources">
					      <list>
					        <value>com/ibm/springtest/dao/UserModel.hbm.xml</value>
					      </list>
					    </property>
					    <property name="hibernateProperties">
					      <value>
					        hibernate.dialect=org.hibernate.dialect.MySQLDialect
					        hibernate.show_sql=true
					        hibernate.format_sql=true
					      </value>
					    </property>
				  </bean>

                 

        <bean id="userDao" class="com.ibm.springtest.dao.JdbcImpl">
            <property name="dataSource" ref="myDataSource"></property>
        </bean>
        
        <bean id="userDao2" class="com.ibm.springtest.dao.HibernateImpl">
            <property name="sf" ref="mySessionFactory"></property>
        </bean>
        
        <bean id="userEbi" class="com.ibm.springtest.dao.UserEbo">
            <property name="userDao" ref="userDao2"></property>
        </bean>
        
        
          
        <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		  <property name="dataSource" ref="myDataSource"/>
		</bean>
        
        <!--
	      <tx:advice id="txAdvice" transaction-manager="txManager">
			  <tx:attributes>
			    <tx:method name="get*" read-only="true"/>
			    <tx:method name="*"/>
			  </tx:attributes>
		  </tx:advice>
		  
		  <tx:advice id="txAdvice2" transaction-manager="txManager">
			  <tx:attributes>
			    <tx:method name="get*" read-only="true"/>
			    <tx:method name="*" propagation="REQUIRES_NEW"/>
			  </tx:attributes>
		  </tx:advice>
		  
		  
	    <aop:config>
		    <aop:pointcut id="myPointcut"  expression="execution(* com.ibm.springtest.dao.*.*(..))"/>
		    <aop:pointcut id="myPointcut2"  expression="execution(* com.ibm.springtest.dao.*.*(..))"/>
		    
		    
		    <aop:advisor pointcut-ref="myPointcut" advice-ref="txAdvice"/>
		    <aop:advisor pointcut-ref="myPointcut2" advice-ref="txAdvice2"/>
		</aop:config>

    -->
        
        
</beans>

 

分享到:
评论

相关推荐

    redis-spring-boot-starter.rar

    `redis-spring-boot-starter`是Spring Boot生态中的一个启动器(Starter),它简化了Redis与Spring Boot集成的过程,使得开发者无需手动配置复杂的Redis连接参数,就能快速地在应用中启用Redis服务。这个启动器通常...

    soft-spring demo

    1. **src/main/java**:包含项目源代码,包括定义Job类和配置Spring Bean的类。 2. **src/main/resources**:存储配置文件,如Spring的applicationContext.xml或application.properties,以及Quartz的配置如quartz....

    dynamic-datasource-spring-boot-starter-master.zip

    这个压缩包"dynamic-datasource-spring-boot-starter-master.zip"提供了一个快速启动的解决方案,使得开发者能够便捷地在SpringBoot应用中配置和管理多个数据源。 首先,我们要理解什么是SpringBoot。SpringBoot是...

    canal-spring-boot-starter:springboot运河支持

    本文将深入探讨`canal-spring-boot-starter`的核心概念、配置及使用方法。 一、Canal简介 Canal是阿里巴巴开源的一款基于MySQL数据库增量日志解析的组件,它能够监听并解析MySQL的binlog,将binlog事件转化为结构...

    jtransfo-spring-0.5.zip

    【标题】"jtransfo-spring-0.5.zip" 提供的是一个集成JTransfo与Spring框架的版本,主要用于对象转换。JTransfo是一个Java库,它简化了Java对象之间的映射过程,使得数据传输对象(DTO)与业务对象(BO)之间的转换...

    springboot 日志配置文件(完整的中文注释)

    spring boot项目记录日志、每日日志归档、彩色日志都会在logback-spring.xml文件中进行配置。给大家分享完整的日志配置信息,以及各种配置的各种含义,有着完整的中文注释。 此logback.xml文件既有成彩色输出也有...

    easybatch-spring-2.2.0.zip

    在Spring环境中,EasyBatch可以与Spring的IoC(Inversion of Control)容器无缝集成,提供强大的依赖注入功能,使开发者能够更方便地管理和配置批处理任务。EasyBatch 2.2.0版本带来了多项改进和优化,包括性能提升...

    SpringMVC精品资源--Spring+SpringMVC+Mybatis+Maven+Mysql框架搭建与分页实例.zip

    首先,Spring框架是Java企业级应用开发的核心,它提供了一个全面的编程和配置模型,用于简化企业级Java应用的复杂性。Spring通过依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented Programming...

    【SpringCloud】最全最细!微服务框架-springcloud微服务架构

    &lt;artifactId&gt;spring-cloud-starter-netflix-eureka-server ``` **步骤2**:配置Eureka Server ```yaml server: port: 8761 eureka: instance: hostname: localhost client: registerWithEureka: false ...

    Spring3.1 定时器配置所需jar包-文档-xml配置-class类-maven-IDEA

    为了配置Spring 3.1的定时器,我们需要添加相关的依赖到项目的Maven pom.xml文件中。这些依赖通常包括Spring核心库、Spring上下文库和Spring任务库,例如: ```xml &lt;groupId&gt;org.springframework &lt;artifactId&gt;...

    定时调度-Spring集成Quartz

    2. **配置SchedulerFactoryBean**:在Spring的配置文件中,配置SchedulerFactoryBean,指定Quartz的配置文件路径、是否自动启动等属性。 3. **配置JobDetailBean**:为每个需要执行的任务创建一个JobDetailBean,...

    50-Spring Boot读写分离1

    在本篇文章中,我们将探讨如何在Spring Boot应用中配置读写分离,以及使用MySQL Router作为中间件。 首先,了解MySQL的主从复制是非常必要的。在一个典型的主从架构中,有一个主库负责写操作,多个从库负责读操作。...

    spring-cloud-demo备份20191024_springcloud_java_分布式_cloud_

    【标题】"spring-cloud-demo备份20191024_springcloud_java_分布式_cloud_" 涵盖了Spring Cloud作为一个核心的分布式系统开发框架,它基于Spring Boot的微服务构建工具,使得开发者能够轻松地创建和配置服务发现、...

    spring-roo-docs

    ROO_OPTS 是一个可选的环境变量,用于配置SpringRoo的一些高级选项。例如,可以通过设置这个变量来指定SpringRoo使用的特定版本的JDK。 **1.5 快速入门:在十分钟内创建自己的Web应用** 快速入门指南介绍了如何在...

    springcloud部署redis集群

    配置SpringCloud以连接Redis集群,你需要在Spring Boot的`application.yml`或`application.properties`中设置Redis连接信息。由于是集群模式,因此需要指定`cluster.nodes`属性,如下所示: ```yaml spring: data:...

    Spring各版本核心配置文件备份

    在`Spring各版本核心配置文件备份`这个压缩包中,我们可以找到不同版本的Spring框架使用的配置文件模板。这些文件可以帮助我们了解每个版本中新增的功能、调整的API,以及推荐的最佳实践。例如,从Spring 2.x到3.x的...

    ssh2自动备份mysql数据库 spring定时器

    3. 使用Spring的`@Scheduled`注解或XML配置设置定时任务,定义备份的频率和时间。 4. 处理备份结果,可能包括保存到本地、上传到云存储或其他备份策略。 至于文件列表,BackUp.java、InitTime.java、ScheduleData....

    gespo-spring-archives

    "gespo-spring-archives" 是一个与Java相关的项目,很可能是一个关于Spring框架的存档。Spring是一个广泛应用的开源框架,主要用于构建企业级的Java应用程序,尤其在开发基于Java的Web应用时,Spring以其模块化、...

    spring-cloud外部配置,注册中心

    3. **故障隔离**:如果Config Server或Eureka Server出现故障,服务实例还可以依赖本地缓存的配置继续运行,直到故障恢复或手动切换到备份配置服务器。 4. **蓝绿部署和金丝雀发布**:通过配置中心,可以轻松地为...

Global site tag (gtag.js) - Google Analytics