我想将settings.xml配置文件参数注入Java类.我尝试使用maven-annotation-plugin,但值为null.我想知道这是不是因为这个插件是为Mojo设计的
Setting.xml片段
APP_NAME
USER_EMAIL
USER_PASSWORD
在班上
@Parameter(defaultValue = "test.email", readonly = true)
private String userEmail;
@Parameter(defaultValue = "test.password", readonly = true)
private String userPassword;
解决方法:
我会使用maven-resources-plugin生成.properties文件并避免生成代码.
src/main/resources
true
并创建文件src / main / resources / com / example / your / file.properties:
testMail = ${test.email}
propertyName = ${maven.variable.name}
在Java中访问它:
getClass().getResourceAsStream("/com/example/your/file.properties")
为了更进一步,您可以使用maven-enforcer-plugin强制执行test.email属性:
maven-enforcer-plugin
enforce-email-properties
enforce
test.email
The 'test.email' property is missing.
It must [your free error text here]
标签:java,maven,code-injection
来源: https://codeday.me/bug/20190725/1535188.html