亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

讀取xml文件中的配置參數(shù)實例

 更新時間:2017年10月10日 10:00:27   作者:jassy  
下面小編就為大家?guī)硪黄x取xml文件中的配置參數(shù)實例。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

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ū)劃代碼前臺顯示默認值-->
    <property name="zoneCode" value="36"></property>
    <!--二代證讀卡器讀取照片存儲位置-->
    <property name="sfzpicpath" value="d:\\"></property>
    <!--保存身份證照片相對路徑-->
    <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ū)劃代碼前臺顯示默認值
 private String zoneCode;
 //二代證讀卡器讀取照片存儲位置
 private String sfzpicpath;
 //保存身份證照片相對路徑
 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ù)實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關文章

  • 基于spring-mvc.xml和application-context.xml的配置與深入理解

    基于spring-mvc.xml和application-context.xml的配置與深入理解

    這篇文章主要介紹了spring-mvc.xml和application-context.xml的配置與深入解析,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-08-08
  • Java中實現(xiàn) SHA-256加密的兩種方式

    Java中實現(xiàn) SHA-256加密的兩種方式

    這篇文章主要介紹了Java中實現(xiàn) SHA-256加密的兩種方式,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友參考下吧
    2024-01-01
  • IDEA actiBPM插件安裝圖文教程

    IDEA actiBPM插件安裝圖文教程

    這篇文章主要介紹了IDEA actiBPM插件安裝教程,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-09-09
  • springboot整合vue項目(小試牛刀)

    springboot整合vue項目(小試牛刀)

    這篇文章主要介紹了springboot整合vue項目(小試牛刀),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-09-09
  • MyBatis 如何簡化的 JDBC(思路詳解)

    MyBatis 如何簡化的 JDBC(思路詳解)

    MyBatis 是一個 持久層 框架,用于 簡化JDBC開發(fā),這篇文章主要介紹了MyBatis 如何簡化的 JDBC(思路詳解),需要的朋友可以參考下
    2023-03-03
  • Java設計模式之迭代模式(Iterator模式)介紹

    Java設計模式之迭代模式(Iterator模式)介紹

    這篇文章主要介紹了Java設計模式之迭代模式(Iterator模式)介紹,本文用一個老師點名的現(xiàn)象描述了迭代模式的使用,需要的朋友可以參考下
    2015-03-03
  • Java設計模式中裝飾者模式應用詳解

    Java設計模式中裝飾者模式應用詳解

    裝飾者模式:在不改變原有對象的基礎之上,動態(tài)的將功能附加到對象上,提供了繼承更有彈性的替代方案,也體現(xiàn)了開閉原則。本文將通過示例詳細講解一下裝飾者模式,需要的可以參考一下
    2022-11-11
  • Spring Boot JPA訪問Mysql示例

    Spring Boot JPA訪問Mysql示例

    本篇文章主要介紹了Spring Boot JPA訪問Mysql示例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-03-03
  • SpringBoot定時任務實現(xiàn)數(shù)據(jù)同步的方法

    SpringBoot定時任務實現(xiàn)數(shù)據(jù)同步的方法

    業(yè)務需求是,通過中臺調(diào)用api接口獲得,設備數(shù)據(jù),要求現(xiàn)實設備數(shù)據(jù)的同步,這篇文章主要介紹了SpringBoot定時任務實現(xiàn)數(shù)據(jù)同步的方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-08-08
  • mybatis實現(xiàn)批量插入并返回主鍵(xml和注解兩種方法)

    mybatis實現(xiàn)批量插入并返回主鍵(xml和注解兩種方法)

    這篇文章主要介紹了mybatis實現(xiàn)批量插入并返回主鍵(xml和注解兩種方法),具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-12-12

最新評論