在做项目时,我的要求是创建一个模块。
命令如下:
mvn archetype:generate \
-DarchetypeCatalog=local \
-DartifactId=test-module
目标应具有以下文件结构
test-module
|--pom.xml
`--src
`--main
|--install
| `--install.sh
`--scripts
`--test_module.sh
我的整个目标是创建另一个从artifactId派生的变量(比如artifactIdWithUnderscore),用underscope
-
替换所有连字符_
。这样我就可以使用更新后的变量来创建文件。
示例:
+------------------+---------------------------------+
|INPUT - artifactId|OUTPUT - artifactIdWithUnderscore|
+------------------+---------------------------------+
| test-module | test_module |
| temp | temp |
| test-temp-module | test_temp_module |
+------------------+---------------------------------+
我尝试通过在 archetype-metadata.xml 中添加以下条目来创建一个新变量作为 artifactIdWithUnderscore
选项 1:
<requiredProperty key="artifactIdWithUnderscore" >
<defaultValue>${StringUtils.replace(${artifactId}, "-", "_")}</defaultValue>
</requiredProperty>
输出:
${StringUtils.replace(${artifactId}, "-", "_")}
选项 2:
<requiredProperty key="artifactIdWithUnderscore" >
<defaultValue>${artifactId.replaceAll("-", "_")}</defaultValue>
</requiredProperty>
输出:
maven_archetype_script
上面的artifactId值来自archetype项目本身的POM。
选项 3:
<requiredProperty key="artifactIdWithUnderscore" >
<defaultValue>${artifactId}.replaceAll("-", "_")</defaultValue>
</requiredProperty>
输出:
test-module.replaceAll("-", "_")
请让我知道如何实现这一目标。
编辑:
选项4:
<requiredProperty key="artifactIdWithUnderscore" >
<defaultValue>${__artifactId__.replaceAll("-", "_")}</defaultValue>
</requiredProperty>
输出:
INFO: Null reference [template 'artifactIdWithUnderscore', line 1, column 1] : ${__artifactId__.replaceAll("-", "_")} cannot be resolved.
Define value for property 'artifactIdWithUnderscore': ${__artifactId__.replaceAll("-", "_")}: :
选项 2 对我有用:
<requiredProperty key="artifactIdWithoutDash">
<defaultValue>${artifactId.replaceAll("-", ".")}</defaultValue>
</requiredProperty>
我可以使用 __artifactIdWithoutDash__.sh 有一个文件名来创建文件(在我的例子中是:some.letters.__artifactIdWithoutDash__.cfg)
在我的例子中(有点相似),稍微修改一下选项 2 就达到了目的:
<requiredProperty key="package-with-slash">
<defaultValue>${package.replace(".", "/")}</defaultValue>
</requiredProperty>
请注意,替换是由 apache Velocity Engine 完成的,最初使用的
replaceAll
使用正则表达式。
你能告诉我如何将工件 id 转换为这样的帕斯卡大小写吗?
<requiredProperty key="artifactIdWithoutDash">
<defaultValue>${artifactId.replaceAll("-", ".")}</defaultValue>
</requiredProperty>