项目中合适的使用资源文件

时间:2022-02-18 18:47:28

没有这种意识以前,很多常量都定义在类里,文件渐渐多了以后,需要改动这些常量时,一个一个文件里找,不知道在哪个文件里。
后来,我遇到了资源文件。

  • XML文件中使用
    举例

    在同一个文件中使用,${}的形式
    <properties>
    <mysqlVersion>x.x.x</mysqlVersion>
    <mysqlUsername>root</mysqlUsername>
    <mysqlPassword>sun</mysqlPassword>
    </properties>

    <version>${mysqlVersion}</version>

    若在不同的文件中,首先要引入资源文件
    资源文件jdbc.properties


    #这是注释

    driver = com.mysql.jdbc.Driver
    url = jdbc:mysql://localhost:3306/db_name
    username = root
    password = sun
    initialSize = 0
    maxActive = 20
    maxIdle = 20
    minIdle = 1
    maxWait = 60000
    <!-- 引入配置文件 jdbc.properties-->
    <bean id="propertyConfigure" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="classpath:jdbc.properties" />
    </bean>

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
    destroy-method="close">

    <property name="driverClassName" value="${driver}" />
    <property name="url" value="${url}" />
    <property name="username" value="${username}"/>
    <property name="password" value="${password}" />

    <!-- 初始化连接大小 -->
    <property name="initialSize" value="${initialSize}" />
    <!-- 连接池最大数量 -->
    <property name="maxActive" value="${maxActive}" />
    <!-- 连接池最大空闲 -->
    <property name="maxIdle" value="${maxIdle}" />
    <!-- 连接池最小空闲 -->
    <property name="minIdle" value="${minIdle}" />
    <!-- 获取连接最大等待时间 -->
    <property name="maxWait" value="${maxWait}" />
    </bean>

  • Java文件中使用
    这里以Maven项目为例

    —src
    —————main
    ————————java
    ————————————test //包名
    ————————————————ClassUseProperties //类名
    ————————————————string.properties //资源文件
    ————————resources
    ————————————value.properties //资源文件

    上述结构有两个资源文件,一个是在java文件夹中,一个是在resources文件夹中。

    定位资源文件有2种方式。转自:http://kyfxbl.iteye.com/blog/1757101
    一种是file system定位,一种是classpath定位

    file system定位

    File file = new File("abc.txt");
    File file = new File("/abc.txt");

    以”/”开头的是绝对路径;不以”/”开头的是相对路径;

    //value资源文件
    ClassUseProperties.class.getResourceAsStream("/value.properties");
    //string资源文件
    ClassUseProperties.class.getResourceAsStream("string.properties");

    classpath定位
    maven项目下,上述结构在target中

    ——target 0
    —————classes 1
    ————————————test 2
    ————————————————ClassUseProperties 3
    ————————————————string.properties 3
    ————————————value.properties 2

    classpath定位到target/classes文件夹

    //value资源文件
    ClassUseProperties.class.getClassLoader.getResourceAsStream("value.properties");
    //string资源文件
    ClassUseProperties.class.getClassLoader.getResourceAsStream("test/string.properties");

    MORE

    getResourceAsStream ()返回的是inputstream
    getResource()返回:URL
    Class.getResource(“”) 返回的是当前Class这个类所在包开始的为置
    Class.getResource(“/”) 返回的是classpath的位置
    getClassLoader().getResource(“”) 返回的是classpath的位置
    getClassLoader().getResource(“/”) 错误的!!