redis+mybatis+spring集群

12 篇文章 0 订阅
4 篇文章 0 订阅
<?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:lang="http://www.springframework.org/schema/lang"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:cache="http://www.springframework.org/schema/cache"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/lang 
        http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/cache
        http://www.springframework.org/schema/cache/spring-cache.xsd">
        
    <!-- 包扫描 -->
       <context:component-scan base-package="sysone.zr.com" />
       
       
       <!-- 引入外部文件 -->
       <context:property-placeholder location="/WEB-INF/jdbc.properties,/WEB-INF/redis.properties"/>
       
       <!-- 开启动态代理 -->
       <aop:aspectj-autoproxy/>
       
       <!-- 事务属性配置 -->
       <tx:advice id="txAdvice" transaction-manager="txManager">
        <!-- 事务传播属性 -->
        <tx:attributes>
            <!-- 所有已get、query、select开头的方法都是只读 -->
            <tx:method name="get*" read-only="true"/>
            <tx:method name="query*" read-only="true"/>
            <tx:method name="select*" read-only="true"/>
            <!-- 其它的所有方法支持事务设置的属性(异常回滚) -->
            <tx:method name="*" rollback-for="java.lang.Throwing" />
        </tx:attributes>
    </tx:advice>
    
        
    <!-- 数据源配置 -->    
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" >
        <property name="driverClassName" value="${jdbc.driverClassName}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>
    
   <!-- 配置数据源管理器 -->
    <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    
    
    <!-- mybatis配置 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
        <property name="configLocation" value="/WEB-INF/mybatis-config.xml"/>
        <property name="typeAliasesPackage" value="sysone.zr.com.mapper.model"/>
        <property name="mapperLocations">
            <list>
                <value>classpath:sysone/zr/com/mapper/xml/*Mapper.xml</value>
            </list>
        </property>
    </bean>
    
    <!-- mybatis 扫描 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="sysone.zr.com.mapper.imapper"/>
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
    </bean>
    
    <!-- 配置redis 单机版 -->
    <!-- redis数据源 -->
    <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">  
        <!-- 最大空闲数 -->
        <property name="maxIdle" value="${redis.maxIdle}" />  
        <!-- 最大空连接数 -->
        <property name="maxTotal" value="${redis.maxActive}" />  
        <!-- 最大等待时间 -->
        <property name="maxWaitMillis" value="${redis.maxWait}" />  
        <!-- 返回连接时,检测连接是否成功 -->
        <property name="testOnBorrow" value="${redis.testOnBorrow}" />  
    </bean>
    
    <bean id="sentinelConfiguration"
   class="org.springframework.data.redis.connection.RedisSentinelConfiguration">
   <property name="master">
       <bean class="org.springframework.data.redis.connection.RedisNode">
           <property name="name" value="mymaster"></property>
       </bean>
   </property>
   <property name="sentinels">
       <set>
           <bean class="org.springframework.data.redis.connection.RedisNode">
               <constructor-arg name="host" value="${sentinel1.ip}"></constructor-arg>
               <constructor-arg name="port" value="${sentinel1.port}"></constructor-arg>
           </bean>
           <bean class="org.springframework.data.redis.connection.RedisNode">
               <constructor-arg name="host" value="${sentinel2.ip}"></constructor-arg>
               <constructor-arg name="port" value="${sentinel2.port}"></constructor-arg>
           </bean>
           <bean class="org.springframework.data.redis.connection.RedisNode">
               <constructor-arg name="host" value="${sentinel3.ip}"></constructor-arg>
               <constructor-arg name="port" value="${sentinel3.port}"></constructor-arg>
           </bean>
       </set>
   </property>
</bean>

<!-- Jedis ConnectionFactory连接配置 -->
<bean id="jedisConnectionFactory"
   class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
   <property name="password" value="${redis.pass}"></property>
   <property name="poolConfig" >
       <ref bean="poolConfig"/>
   </property>
   <constructor-arg name="sentinelConfig" ref="sentinelConfiguration"></constructor-arg>
</bean>

    <!-- redis模板类,提供了对缓存的增删改查 -->
    <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory" />
        <property name="keySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
        <property name="valueSerializer">
            <bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer" />
        </property>
    </bean>
    
    <!-- StrRedisTemplate -->
    <bean id="strRedisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory" />
        <property name="keySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
        <property name="valueSerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
        <property name="hashKeySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" />
        </property>
    </bean>
    
    <!-- 使用中间类解决RedisCache.jedisConnectionFactory的静态注入,从而使MyBatis实现第三方缓存 -->
    <bean id="redisCacheTransfer" class="sysone.zr.com.utils.RedisCacheTransfer">
        <property name="jedisConnectionFactory" ref="jedisConnectionFactory"/>
    </bean> 
    <!-- //End 单机版Redis集成 -->
    
    <!-- Redis缓存管理对象 -->
    <!-- <bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
        <constructor-arg index="0" ref="redisTemplate" />
    </bean> -->
    
    
    <!-- spring自己的换管理器,这里定义了两个缓存位置名称 ,既注解中的value -->  
    <bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">  
        <property name="caches">  
            <set>  
                <bean class="sysone.zr.com.utils.SpringRedisCache">  
                    <property name="redisTemplate" ref="redisTemplate" />  
                    <property name="name" value="lf_cache"/>  
                </bean>  
            </set>  
        </property>  
    </bean>  


     
    <!-- 开启Spring缓存 -->
    <cache:annotation-driven cache-manager="cacheManager"/>
    
    
    
    <!-- Spring容器实例 -->
    <!-- <bean class="sysone.zr.com.utils.SpringContext" /> -->
</beans>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值