91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java maven項目怎么讀取配置文件信息

發布時間:2021-11-19 10:10:25 來源:億速云 閱讀:528 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關java maven項目怎么讀取配置文件信息的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

maven項目讀取配置文件信息

目錄結構

java maven項目怎么讀取配置文件信息

主類

App.java

package com.tomy.hive; 
import java.io.*;
import java.util.Properties;
 
/**
 * Hello world!
 *
 */
public class App {
    private static String JDBC_URL;
    private static String JDBC_DRIVER;
 
    /**
     * 讀取配置文件
     * @return
     */
    public static void readConfigFile(String cfgFile) {
        try {
            InputStream in = App.class.getClassLoader().getResource(cfgFile).openStream();
            Properties prop = new Properties();
            prop.load(in);
            JDBC_URL = prop.getProperty("jdbc.url");
            JDBC_DRIVER = prop.getProperty("jdbc.driver");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
    public static void main(String[] args) {
        readConfigFile("resources/jdbc.properties");
        System.out.println(JDBC_URL);
        System.out.println(JDBC_DRIVER);
    }
}

配置文件

jdbc.properties

jdbc.url=jdbc:mysql://10.6.52.35:3306/test?characterEncoding=utf-8&serverTimezone=UTC&useSSL=false
jdbc.driver=com.mysql.jdbc.Driver

pom文件

<?xml version="1.0" encoding="UTF-8"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
 
  <groupId>com.tomy.hive</groupId>
  <artifactId>hive-demo</artifactId>
  <version>1.0-SNAPSHOT</version>
 
  <name>hive-demo</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>
 
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
 
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
 
  <build>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <configuration>
            <skip>true</skip>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jar-plugin</artifactId>
          <version>3.0.2</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <mainClass>com.tomy.hive.App</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <executions>
            <execution>
              <id>copy-resources</id>
              <phase>validate</phase>
              <goals>
                <goal>copy-resources</goal>
              </goals>
              <configuration>
                <outputDirectory>${project.build.directory}/conf</outputDirectory>
                <resources>
                  <resource>
                    <directory>src/main/resources</directory>
                  </resource>
                </resources>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
 
    </pluginManagement>
 
    <resources>
      <resource>
        <filtering>true</filtering>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/**.properties</include>
        </includes>
        <targetPath>/resources</targetPath>
      </resource>
    </resources>
  </build>
</project>

控制臺運行

java maven項目怎么讀取配置文件信息

jar命令運行

java maven項目怎么讀取配置文件信息

maven工程讀取resources配置文件的正確姿勢

我們maven項目結構如下:

java maven項目怎么讀取配置文件信息

使用相對路徑來讀取resources目錄下的資源文件

InputStream in = new InputStream(new File(“src/main/resources/car.txt”));

這樣在本地運行的時候,是能正常讀取到的,不會報錯,但是如果打成jar包,運行的時候就會報路徑錯誤。

從jar包的結構可以看到,resources目錄的資源文件位置變了,在項目的最外層了,所以導致相對路徑也發生了變化。

java maven項目怎么讀取配置文件信息

這個時候,我們可以通過getClassLoader()方法來獲取正確的配置文件路徑。

(this也可以換成類的名稱)

InputStream in = this.class.getClassLoader().getResourceAsStream(path);

這樣,在本地運行或者jar包運行都能正常讀取到配置文件了。

感謝各位的閱讀!關于“java maven項目怎么讀取配置文件信息”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

常州市| 门头沟区| 临漳县| 宜阳县| 红原县| 阳新县| 锦州市| 鹤庆县| 肃北| 衡东县| 绍兴县| 邯郸县| 万安县| 汤阴县| 莆田市| 连平县| 买车| 稻城县| 阳信县| 道孚县| 雷波县| 当雄县| 焦作市| 合阳县| 沙雅县| 湘乡市| 五原县| 萍乡市| 万年县| 齐齐哈尔市| 大姚县| 沈丘县| 广安市| 保德县| 鹤山市| 长阳| 西平县| 平利县| 枣强县| 社旗县| 沅江市|