1. 程式人生 > >maven+IDEA+jar包讀取外部配置檔案

maven+IDEA+jar包讀取外部配置檔案

1、工程結構如下

src是jar的原始碼路徑,如果jar要讀取和它同一級目錄下的conf資料夾下的配置檔案就在src同一級目錄下建立一個conf資料夾

裡面放上配置檔案就可以了

2、測試程式碼如下


  
  1. package com.lyzx.one;
  2. import com.alibaba.fastjson.JSONObject;
  3. import java.io.FileInputStream;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. import java.util.Properties;
  7. public class Test {
  8. public static void main(String[] args) {
  9. Properties p = new Properties();
  10. try{
  11. InputStream in = new FileInputStream( "conf/base.properties");
  12. p.load(in);
  13. } catch(IOException e){
  14. e.printStackTrace();
  15. }
  16. System.out.println(p.getProperty( "AA"));
  17. JSONObject o = new JSONObject();
  18. o.put( "A", "value");
  19. System.out.println(o);
  20. }
  21. }

3、maven打包pom.xml檔案如下


  
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0 </modelVersion>
  4. <groupId>com.lyzx.one </groupId>
  5. <artifactId>v2 </artifactId>
  6. <version>1.0-SNAPSHOT </version>
  7. <packaging>jar </packaging>
  8. <build>
  9. <pluginManagement>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins </groupId>
  13. <artifactId>maven-jar-plugin </artifactId>
  14. <version>2.4 </version>
  15. <configuration>
  16. <archive>
  17. <!-- 不打包依賴的jar,把依賴的jar copy到lib目錄,和生成的jar放在同一級目錄下 -->
  18. <manifest>
  19. <addClasspath>true </addClasspath>
  20. <classpathPrefix>lib/ </classpathPrefix>
  21. <mainClass>com.lyzx.one.Test </mainClass>
  22. </manifest>
  23. </archive>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </pluginManagement>
  28. </build>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.alibaba </groupId>
  32. <artifactId>fastjson </artifactId>
  33. <version>1.2.5 </version>
  34. </dependency>
  35. </dependencies>
  36. </project>

4、編譯後的結構

可以看到com包可conf資料夾在同一模下

 

5、部署到伺服器上的目錄結構

conf資料夾下放配置檔案,lib資料夾下放第三方jar包(在maven打包的pom.xml檔案中配置) printPath.jar是可執行的jar包

6、測試的結果

到此為止!整個過程搞定

1、工程結構如下