summaryrefslogtreecommitdiff
path: root/src/main/resources/spring.xml
diff options
context:
space:
mode:
authortanghao <default@DESKTOP-7FEGRP2>2019-11-29 18:25:03 +0800
committertanghao <default@DESKTOP-7FEGRP2>2019-11-29 18:25:03 +0800
commit7f613afb92b399df0b3e808c59a744bc4ea304a5 (patch)
treefc9f46ad6f9e4e7040233e3cecfcd55cdfbc56c2 /src/main/resources/spring.xml
parent7d43f2c999e55c003fb1598a4621aaf9bcd05e67 (diff)
feat:confagent初始搭建版本HEADmaster
confagent初版
Diffstat (limited to 'src/main/resources/spring.xml')
-rw-r--r--src/main/resources/spring.xml142
1 files changed, 142 insertions, 0 deletions
diff --git a/src/main/resources/spring.xml b/src/main/resources/spring.xml
new file mode 100644
index 0000000..6fe2c2d
--- /dev/null
+++ b/src/main/resources/spring.xml
@@ -0,0 +1,142 @@
+<?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:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
+ xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
+ xmlns:util="http://www.springframework.org/schema/util" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="
+ http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
+ http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
+ http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.1.xsd
+ http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.1.xsd
+ http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
+ http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
+ http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd"
+ default-lazy-init="true">
+
+ <description>Spring Configuration</description>
+
+ <!-- 加载配置属性文件 -->
+ <context:property-placeholder location="classpath*:confagent.properties" />
+
+ <bean id="propertyConfigurer" class="com.nis.util.PropertyPlaceholder">
+ <property name="location">
+ <value>classpath:confagent.properties</value>
+ </property>
+ </bean>
+
+
+ <!-- 使用Annotation自动注册Bean,解决事物失效问题:在主容器中不扫描@Controller注解,在SpringMvc中只扫描@Controller注解。 -->
+ <context:component-scan base-package="com.nis"><!-- base-package 如果多个,用“,”分隔 -->
+ <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
+ </context:component-scan>
+
+ <!-- MyBatis begin -->
+ <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
+ <property name="dataSource" ref="dataSource"/>
+ <property name="typeAliasesPackage" value="com.nis.entity"/>
+ <property name="mapperLocations" value="classpath:/mapper/*.xml"/>
+ <!-- <property name="configLocation" value="classpath:/mybatis-config.xml"></property> -->
+ </bean>
+
+ <!-- 扫描basePackage下所有以@MyBatisDao注解的接口 -->
+ <bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
+ <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
+ <property name="basePackage" value="com.nis.dao"/>
+ <!-- <property name="annotationClass" value="com.nis.common.persistence.annotation.MyBatisDao"/> -->
+ </bean>
+
+ <!-- 定义事务 -->
+ <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
+ <property name="dataSource" ref="dataSource" />
+ </bean>
+
+ <!-- 配置 Annotation 驱动,扫描@Transactional注解的类定义事务 -->
+ <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
+ <!-- MyBatis end -->
+
+ <!-- 配置 JSR303 Bean Validator 定义 -->
+ <bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" />
+
+ <!-- 计划任务配置,用 @Service @Lazy(false)标注类,用@Scheduled(cron = "0 0 2 * * ?")标注方法 -->
+ <task:executor id="executor" pool-size="10"/>
+ <task:scheduler id="scheduler" pool-size="10"/>
+ <task:annotation-driven scheduler="scheduler" executor="executor" proxy-target-class="true"/>
+
+ <!-- 数据源配置, 使用 BoneCP 数据库连接池 -->
+ <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
+ <!-- 数据源驱动类可不写,Druid默认会自动根据URL识别DriverClass -->
+ <property name="driverClassName" value="${jdbc.driver}" />
+
+ <!-- 基本属性 url、user、password -->
+ <property name="url" value="${jdbc.url}" />
+ <property name="username" value="${jdbc.username}" />
+ <property name="password" value="${jdbc.password}" />
+
+ <!-- 配置初始化大小、最小、最大-->
+ <property name="initialSize" value="5" />
+ <property name="minIdle" value="5" />
+ <property name="maxActive" value="10" />
+
+ <!-- 配置获取连接等待超时的时间 -->
+ <property name="maxWait" value="15000" />
+
+ <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
+ <property name="timeBetweenEvictionRunsMillis" value="60000" />
+
+ <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
+ <property name="minEvictableIdleTimeMillis" value="300000" />
+
+ <!-- <property name="validationQuery" value="${jdbc.testSql}" /> -->
+ <property name="testWhileIdle" value="true" />
+ <property name="testOnBorrow" value="false" />
+ <property name="testOnReturn" value="false" />
+
+ <!-- 打开PSCache,并且指定每个连接上PSCache的大小(Oracle使用)
+ <property name="poolPreparedStatements" value="true" />
+ <property name="maxPoolPreparedStatementPerConnectionSize" value="20" /> -->
+
+ <!-- 配置监控统计拦截的filters -->
+ <property name="filters" value="stat" />
+ </bean>
+
+ <!-- <bean id="jobFactory" class="com.nis.job.ConfagentJobFactory"/>
+
+ <bean id="scheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
+ <property name="jobFactory" ref="jobFactory"/>
+ </bean> -->
+
+ <bean id="jobFactory" class="com.nis.job.ConfagentJobFactory"/>
+
+
+ <!-- 配置Job类 -->
+ <bean id="myJob" class="com.nis.job.ConfagentJob"></bean>
+
+ <!-- 配置JobDetail -->
+ <bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
+ <!-- 执行目标job -->
+ <property name="targetObject" ref="myJob"></property>
+ <property name="concurrent" value="false" />
+ <!-- 要执行的方法 -->
+ <property name="targetMethod" value="execute"></property>
+ </bean>
+
+ <!-- 配置tirgger触发器 -->
+ <bean id="cronTriggerFactoryBean" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
+ <!-- jobDetail -->
+ <property name="jobDetail" ref="jobDetail"></property>
+ <!-- cron表达式,执行时间 每5秒执行一次 -->
+ <property name="cronExpression" value="${job.cron}"></property>
+ </bean>
+
+ <!-- 配置调度工厂 -->
+ <bean id="springJobSchedulerFactoryBean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
+ <property name="jobFactory" ref="jobFactory"/>
+ <property name="triggers">
+ <list>
+ <ref bean="cronTriggerFactoryBean"></ref>
+ </list>
+ </property>
+
+ </bean>
+
+
+</beans> \ No newline at end of file