我是靠谱客的博主 温柔灯泡,这篇文章主要介绍在springboot项目中获取pom.xml中的信息,现在分享给大家,希望可以做个参考。

最近做了一个新项目,用到了springboot。在搭建框架的过程中,需要读取pom.xml中version的值,本来想着是用自己用java解析xml来着。没想到maven提供了这么一个包,可以直接获取,代码:

首先在pom.xml中引入

复制代码
1
2
3
4
5
<dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>3.0</version> </dependency>

java代码:

复制代码
1
2
3
4
5
String rootPath = System.getProperty("user.dir"); MavenXpp3Reader reader = new MavenXpp3Reader(); String myPom = rootPath + File.separator + "pom.xml"; Model model = reader.read(new FileReader(myPom)); String version = model.getVersion();//获取版本号

可以通过model获取pom里面的很多信息。具体看需求吧

转载于:https://www.cnblogs.com/zhyStudy/p/9373226.html

最后

以上就是温柔灯泡最近收集整理的关于在springboot项目中获取pom.xml中的信息的全部内容,更多相关在springboot项目中获取pom.xml中内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部