gpt4 book ai didi

javascript - 在 HTML 页面上显示 POM 文件属性的值

转载 作者:行者123 更新时间:2023-12-03 03:50:30 25 4
gpt4 key购买 nike

我正在尝试在客户端的 HTML 页面上显示 pom.xml 文件的属性值(以便管理员可以在管理页面上看到它),但我找不到方法做吧。

我尝试过 PHP 和 JS 等,但没有任何效果...这是我的最后一次尝试:

function populatePre(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
document.getElementById('contents').textContent = this.responseText;
};
xhr.open('GET', url);
xhr.send();
}
<p id="testButton"><button type="button" onclick=populatePre('C:\path\to\my\pom.xml')>Click Me!</button></p>
<pre id="contents"></pre>

基本上,HTML 页面位于一个文件夹中,而 pom.xml 文件位于另一个文件夹中 (../../path/to/pom.xml)。我不知道如何访问它,也不知道如何阅读它......

最佳答案

可以在 pom.xml 中将 HTML 页面描述为过滤后的资源。类似的东西

<resource>
<directory>path/to/html_directory</directory>
<includes>
<include>your.html</include>
</includes>
<filtering>true</filtering>
</resource>

然后将占位符作为 ${yourPropertyName} 放入 HTML 中,它将在构建过程中替换为属性值。详情见Maven Resources Plugin filtering option description 。这能解决您的问题吗?

关于javascript - 在 HTML 页面上显示 POM 文件属性的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45185928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com