讀取xml文件中的配置參數(shù)實(shí)例
更新時(shí)間:2017年10月10日 10:00:27 作者:jassy
下面小編就為大家?guī)硪黄x取xml文件中的配置參數(shù)實(shí)例。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
paras.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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean id="SysParam" class="com.wisoft.tysfrz.utils.SysParam">
<!--行政區(qū)劃代碼前臺(tái)顯示默認(rèn)值-->
<property name="zoneCode" value="36"></property>
<!--二代證讀卡器讀取照片存儲(chǔ)位置-->
<property name="sfzpicpath" value="d:\\"></property>
<!--保存身份證照片相對(duì)路徑-->
<property name="photoRealPath" value="r/project/imgs/photo/"></property>
</bean>
</beans>
SysParam.java類文件
package com.wisoft.tysfrz.utils;
/**
* 系統(tǒng)配置參數(shù)
*
* @author ZHENWENCAN
* @date 2017年10月9日 下午1:09:48
*/
public class SysParam {
//行政區(qū)劃代碼前臺(tái)顯示默認(rèn)值
private String zoneCode;
//二代證讀卡器讀取照片存儲(chǔ)位置
private String sfzpicpath;
//保存身份證照片相對(duì)路徑
private String photoRealPath;
public String getZoneCode() {
return zoneCode;
}
public void setZoneCode(String zoneCode) {
this.zoneCode = zoneCode;
}
public String getSfzpicpath() {
return sfzpicpath;
}
public void setSfzpicpath(String sfzpicpath) {
this.sfzpicpath = sfzpicpath;
}
public String getPhotoRealPath() {
return photoRealPath;
}
public void setPhotoRealPath(String photoRealPath) {
this.photoRealPath = photoRealPath;
}
}
使用
private static ApplicationContext cpxac = new ClassPathXmlApplicationContext("tysfrz/spring/tysfrz_params.xml");
private static SysParam sysparam = (SysParam) cpxac.getBean("SysParam");
String photorealpath = sysparam.getPhotoRealPath();
需要引用包
import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;
以上這篇讀取xml文件中的配置參數(shù)實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:
相關(guān)文章
SpringBoot2 Jpa 批量刪除功能的實(shí)現(xiàn)
這篇文章主要介紹了SpringBoot2 Jpa 批量刪除功能的實(shí)現(xiàn),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2021-01-01
Spring Cloud @RefreshScope 原理及使用
這篇文章主要介紹了Spring Cloud @RefreshScope 原理及使用,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-01-01
Spring Bean六種作用域的適用場(chǎng)景和使用方式
本文主要介紹了Spring Bean六種作用域的適用場(chǎng)景和使用方式,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-07-07
使用webmagic實(shí)現(xiàn)爬蟲程序示例分享
這篇文章主要介紹了使用webmagic實(shí)現(xiàn)爬蟲程序示例,需要的朋友可以參考下2014-04-04
Java中SSM+Shiro系統(tǒng)登錄驗(yàn)證碼的實(shí)現(xiàn)方法
這篇文章主要介紹了 SSM+Shiro系統(tǒng)登錄驗(yàn)證碼的實(shí)現(xiàn)方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2017-02-02

