代提交

This commit is contained in:
liuz 2018-06-15 20:26:44 +08:00
parent 34e1a293f5
commit dc6f2c5aa9

View File

@ -65,6 +65,19 @@ xmlns:p="http://www.springframework.org/schema/p"
</bean>
<util:properties id="secondHandCarProperties" location="classpath:second_handCar.properties" />
<bean id="secondHandCarConfig" class="com.amarsoft.app.awe.config.SecondHandCarProperties">
<!-- 二手车接口调用前缀 -->
<property name="prefix" value="#{secondHandCarProperties['com.tenwa.zhanglei.prefix']}"></property>
<!-- 二手车接口调用令牌 -->
<property name="token" value="#{secondHandCarProperties['com.tenwa.zhanglei.token']}"></property>
<!-- 操作类型 -->
<property name="oper" value="#{secondHandCarProperties['com.tenwa.zhanglei.oper']}"></property>
<!-- 车型库版本信息 -->
<property name="version" value="#{secondHandCarProperties['com.tenwa.zhanglei.version']}"></property>
</bean>
<util:properties id="jdbcProperties" location="classpath:quartz.properties" />
<bean id="dataSourceJDBC" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
<property name="driverClass" value="#{jdbcProperties['org.quartz.dataSource.zhulhDS.driver']}" />