SpringBoot 如何读取pom.xml中的值

如何读取pom.xml中的值

首先,Java代码中是无法直接读取pom.xml中的内容的,需要先把值转到xxx.properties中,再通过程序读取xxx.properties中对应的值。

xxx.properties读取pom.xml

1.xxx.properties中

以pom.xml中的version标签为例。@xx@代表读取pom.xml中的值

这里为什么是用@呢:

由于${}方式会被maven处理。如果你pom继承了spring-boot-starter-parent,Spring Boot已经将maven-resources-plugins默认的${}方式改为了@@方式,如@name@

2.pom.xml中

在rescource加入


    src/main/resources
    
       **.*
       **/**.*
    
    true

比如证书文件,不做任何处理的话会抛出异常加入这个标签会后,*.xml、*.properties正常,其他文件的内容可能会发生改变。

DerInputStream.getLength(): lengthTag=111, too big

解决方案是把把不需要过滤的文件单独列出来,从maven-resources-plugin插件中排除

 
org.apache.maven.plugins 
maven-resources-plugin 
 UTF-8   
pem pfx p12 eot svg ttf woff css js html ico 
 
 

读取xxx.properties文件

这个就比较常规了

4.0.0
 
	com.didispace
	Chapter4-2-2
	1.0.0
	jar
@Value("${project.version}")
private String version;

SpringBoot 如何读取pom.xml中的值_第1张图片

SpringBoot读取pom配置报错

创建父子maven工程时,maven配置文件pom.xml报错;

我的父工程存在多种环境配置,使用${xxx}占位符方式进行引入配置文件版本管理;创建maven子工程时报错,如图报错提示:

SpringBoot 如何读取pom.xml中的值_第2张图片

报错原因

由于方式会被maven处理。如果你pom继承了spring−boot−starter−parent,SpringBoot已经将maven−resources−plugins默认的‘{}方式会被maven处理。如果你pom继承了spring-boot-starter-parent, Spring Boot已经将maven-resources-plugins默认的`方式会被maven处理。如果你pom继承了spring−boot−starter−parent,SpringBoot已经将maven−resources−plugins默认的‘{xxx}`方式改为了@@方式,如@name@,所以会出现上述报错情况;

解决方法

如果还想继续使用${xxx}占位符方式,只需要在父工程pom.xml文件中加上下面配置即可:

        
            
                
                    maven-resources-plugin
                    
                        utf-8
                        true
                    
                
            
        

如图所示:

SpringBoot 如何读取pom.xml中的值_第3张图片

更新maven工程,报错问题解决

SpringBoot 如何读取pom.xml中的值_第4张图片

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

你可能感兴趣的:(SpringBoot 如何读取pom.xml中的值)