在 Java、Spring 配置与系统属性文件中设置类属性
我们可以使用 Spring 配置文件或 .properties 文件来存储和检索一些属性,例如数据库连接。 (db url、db 密码等)
我们还可以一起使用 Spring 配置文件和 .properties 文件,其中我们从 .property 文件引用属性(就像在 ant 中一样)
以下场景的优点或缺点是什么:
1 - 仅使用 .properties 文件。
2 - 仅使用 Spring 配置文件。
3 - 两者一起使用。
在维护方面,哪种情况会更好?
我需要在这三者之间做出选择,并且在选择任何一个选项之前我希望有更好的判断!
提前致谢!
- 伊瓦尔
We can use both Spring config file OR a .properties file to store and retrieve some properties, like for a database connection. (db url, db password and etc)
We can also use Spring config file and a .properties file together, where we reference the property from a .property file (like in ant)
What would be the advantages or disadvantages for the following scenarios:
1 - Using only .properties file.
2 - Using only Spring config file.
3 - Using both together.
Would any of the scenarios be better when it comes to maintenance?
I need to choose between the three, and I would like to have a better judgement before I go with any of the option!
Thanks in advance!
- Ivar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者都在一起。使用可从项目中外部化的属性文件来配置 Spring。然后 Spring 会配置您的项目。大多数情况下,您不会编写代码来读取属性文件。让 Spring 管理它并为您的对象注入适当的值。然后,您就有了适当的依赖项注入,并且您构建的工件不是特定于环境的。
缺点:
Both together. Use a properties file that's externalizable from your project to configure Spring. Spring then configures your project. Mostly, you don't write code to read from properties files. Let Spring manage that and inject your objects with the appropriate values. Then you have appropriate dependency injection and the artifact you build isn't environment-specific.
Disadvantages: