使用 Maven 获取集成测试数据库密码的最佳方法是什么?
我们正在使用 Maven 和 Spring,当前使用系统属性执行我们的测试并使用此行进行测试。
mvn -Ddbuser=username -Ddbpassword=password test
过去我曾使用过环境变量,但我读到 Maven 中的支持正在消失,所以我认为这可能是一个不好的做法。
We are using Maven and Spring and current execute our tests by using System properties and test with this line.
mvn -Ddbuser=username -Ddbpassword=password test
In the past I had utilized environment variables but I read that support was going away in maven so figured it may be a bad practice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将密码存储为 settings.xml 文件中的属性。现在,如果以明文形式存储它会像我一样困扰您,那么 Maven 有一个 --encrypt-password 选项,您可以将密码存储在配置文件、服务器或其他一些加密的 settings.xml 中用于集成测试的部分。以下是有关如何配置此功能的文档的链接:
http://maven.apache .org/guides/mini/guide-cryption.html
You could store the password as property in the settings.xml file. Now, if storing it in a clear text bugs you as much as me, there is the --encrypt-password option for the maven that you can then store the password in the settings.xml encrypted in a profile, server, or some other section for use in your integration tests. Here's the link to the documentation on how to configure this:
http://maven.apache.org/guides/mini/guide-encryption.html