使用 JNDI 作为数据源的主要动机是什么?
我不明白为什么有人会使用 JNDI。
有人可以强调一下使用 JNDI 作为数据源的主要原因吗?
I fail to understand why someone would use JNDI.
Can someone high light the major reasons to use JNDI for datasources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它允许在代码之外完成资源配置。在 JNDI 之前,我们通常使用配置文件并将所有内容都放在其中。使用 JNDI,代码开发人员不需要了解数据库或队列的配置参数。
It allows the configuration of resources to be done outside of the code. Before JNDI we use to use config files and have everything in there. With JNDI the developers of the code do not need to be aware of the configuration parameters of a database or queues.
集中管理和配置。连接数据库连接不是应用程序的责任。
Central management and configuration. It is not the responsibility of the application to wire up the database connection.