1. 程式人生 > >spring 注入properties屬性,動態切換測試與生成環境

spring 注入properties屬性,動態切換測試與生成環境

1.準備檔案test.properties api_query_nurses_by_page=http://test-jkda.998jk.com//admin/jkda/queryNursesPage.json
api_query_nurses_by_ids=http://test-jkda.998jk.com/admin/jkda/queryNursesByIds.json
api_send_busi_sms=http://test-jkda.998jk.com/mobile/customer/sendText.json
api_query_customer_info=http://test-jkda.998jk.com/mobile/personcenter/v2/getUserinfopz.json
api_send_refund=http://test-wb-pz.998jk.com/main/getData.do?sc=00000006&mn=refundAllMoney&ver=1&av=1.0
api_login_by_nurse=http://test-bops.998jk.com/mobile/doctorthree/docLogin.json
api_send_validatecode=http://test-jkda.998jk.com/mobile/customer/validate.json?random=1313&type=3 api_login_by_yzm=http://test-jkda.998jk.com/mobile/customer/loginByYZM.json 2.載入test.properties檔案  如果在生成環境上可將test.properties改成product.properties <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<array>
<value>classpath:db.properties</value>
<value>classpath:test.properties</value>
</array>
</property>
</bean>
3.注入service 元件 @Value("${api_query_nurses_by_page}")
String apiQueryNursesByPage;

@Value("${api_query_nurses_by_ids}")
String apiQueryNursesByIds;

@Value("${api_send_busi_sms}")
String apiSendBusiSms;

@Value("${api_query_customer_info}")
String apiQueryCustomerInfo;

@Value("${api_send_refund}")
String apiSendRefund;