158 lines
7.0 KiB
XML
158 lines
7.0 KiB
XML
<?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:tx="http://www.springframework.org/schema/tx"
|
||
xmlns:task="http://www.springframework.org/schema/task"
|
||
xmlns:context="http://www.springframework.org/schema/context"
|
||
xmlns:cache="http://www.springframework.org/schema/cache"
|
||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||
http://www.springframework.org/schema/tx
|
||
http://www.springframework.org/schema/tx/spring-tx.xsd
|
||
|
||
|
||
http://www.springframework.org/schema/context
|
||
http://www.springframework.org/schema/context/spring-context.xsd
|
||
|
||
|
||
http://www.springframework.org/schema/task
|
||
http://www.springframework.org/schema/task/spring-task.xsd
|
||
http://www.springframework.org/schema/cache
|
||
http://www.springframework.org/schema/cache/spring-cache.xsd"
|
||
default-lazy-init="false">
|
||
|
||
<!-- 导入外部的properties文件-->
|
||
<bean id="propertyConfigurer"
|
||
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||
<property name="locations" >
|
||
<list>
|
||
<value>classpath:mq.properties</value>
|
||
<value>classpath:jdbc.properties</value>
|
||
</list>
|
||
</property>
|
||
</bean>
|
||
<!-- 注册识别注解 -->
|
||
<context:component-scan base-package="com.ifish.daoImpl,com.ifish.serviceImpl,com.ifish.helper,com.ifish.config"/>
|
||
<!-- 文件上传 -->
|
||
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
|
||
<property name="maxUploadSize" value="10485760"/>
|
||
</bean>
|
||
|
||
<!-- Druid 连接池 -->
|
||
<bean name="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
|
||
<property name="driverClassName" value="${jdbc.driver}" />
|
||
<property name="url" value="${jdbc.url}" />
|
||
<property name="username" value="${jdbc.username}" />
|
||
<property name="password" value="${jdbc.password}" />
|
||
|
||
<!-- 初始化连接大小 -->
|
||
<property name="initialSize" value="${initialSize}" />
|
||
<!-- 连接池最大使用连接数量 -->
|
||
<property name="maxActive" value="${maxActive}" />
|
||
|
||
<!-- 连接池最小空闲 -->
|
||
<property name="minIdle" value="${minIdle}" />
|
||
<!-- 获取连接最大等待时间 -->
|
||
<property name="maxWait" value="${maxWait}" />
|
||
<property name="poolPreparedStatements" value="${poolPreparedStatements}" />
|
||
<property name="maxPoolPreparedStatementPerConnectionSize"
|
||
value="${maxPoolPreparedStatementPerConnectionSize}" />
|
||
<!-- 用来检测有效sql -->
|
||
<property name="testOnBorrow" value="false" />
|
||
<property name="testOnReturn" value="false" />
|
||
<property name="testWhileIdle" value="true" />
|
||
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
|
||
<property name="timeBetweenEvictionRunsMillis" value="${timeBetweenEvictionRunsMillis}" />
|
||
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
|
||
<property name="minEvictableIdleTimeMillis" value="${minEvictableIdleTimeMillis}" />
|
||
<!-- 打开removeAbandoned功能 -->
|
||
<property name="removeAbandoned" value="true" />
|
||
<!-- 1800秒,也就是30分钟 -->
|
||
<property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}" />
|
||
<!-- 关闭abanded连接时输出错误日志 -->
|
||
<property name="logAbandoned" value="true" />
|
||
<!-- 监控数据库 -->
|
||
<property name="filters" value="mergeStat" />
|
||
</bean>
|
||
|
||
<!-- sessionFactory工厂 -->
|
||
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
|
||
<property name="dataSource" ref="dataSource" />
|
||
<!-- 指定文件路径 -->
|
||
<property name="mappingLocations">
|
||
<list>
|
||
<value>classpath:/com/ifish/entity/hbm/*.hbm.xml</value>
|
||
</list>
|
||
</property>
|
||
<!-- 扫描注解包 -->
|
||
<property name="packagesToScan">
|
||
<list>
|
||
<value>com.ifish.entity</value>
|
||
</list>
|
||
</property>
|
||
<property name="hibernateProperties">
|
||
<props>
|
||
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
|
||
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
|
||
<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
|
||
</props>
|
||
</property>
|
||
</bean>
|
||
|
||
<!-- 事务管理配置 -->
|
||
<tx:annotation-driven transaction-manager="txManager" />
|
||
<bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
|
||
<property name="sessionFactory" ref="sessionFactory" />
|
||
</bean>
|
||
|
||
<!-- 二级缓存配置 -->
|
||
<cache:annotation-driven cache-manager="cacheManager"/>
|
||
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
|
||
<property name="cacheManager" ref="ehcache"/>
|
||
</bean>
|
||
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
|
||
<property name="configLocation" value="classpath:ehcache-setting.xml"/>
|
||
</bean>
|
||
|
||
<!-- async配置 -->
|
||
<task:annotation-driven executor="asyncExecutor"/>
|
||
<task:executor id="asyncExecutor" pool-size="10-100" queue-capacity="5"/>
|
||
|
||
<!-- 短信推送 -->
|
||
<bean id="smsNumSend" class="com.ifish.jpush.SmsNumSend"></bean>
|
||
<!-- 云信 -->
|
||
<bean id="neteaseIM" class="com.ifish.netease.NeteaseIM"></bean>
|
||
|
||
<bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory" >
|
||
<property name="brokerURL" value="${broker_url}" />
|
||
<property name="userName" value="${username}" />
|
||
<property name="password" value="${password}" />
|
||
</bean>
|
||
|
||
<bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory"
|
||
destroy-method="stop">
|
||
<property name="connectionFactory" ref="connectionFactory"/>
|
||
<property name="maxConnections" value="100"></property>
|
||
</bean>
|
||
<!--使用缓存可以提升效率-->
|
||
<bean id="cachingConnectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory">
|
||
<property name="targetConnectionFactory" ref="jmsFactory"/>
|
||
<property name="sessionCacheSize" value="1"/>
|
||
</bean>
|
||
<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
|
||
<property name="connectionFactory" ref="cachingConnectionFactory"/>
|
||
<property name="messageConverter">
|
||
<bean class="org.springframework.jms.support.converter.SimpleMessageConverter"/>
|
||
</property>
|
||
</bean>
|
||
|
||
<!-- 定义消息推送消息队列(Queue) -->
|
||
<bean id="ifish7PushQueueDestination" class="org.apache.activemq.command.ActiveMQQueue">
|
||
<!-- 设置消息队列的名字 -->
|
||
<constructor-arg>
|
||
<value>${queue_push_name}</value>
|
||
</constructor-arg>
|
||
</bean>
|
||
|
||
|
||
</beans> |