使用 Maven 获取集成测试数据库密码的最佳方法是什么?

发布于 2024-10-06 10:43:52 字数 187 浏览 1 评论 0原文

我们正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-10-13 10:43:52

您可以将密码存储为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文