在java命令行应用程序中创建连接池
是否可以创建一个使用连接池来访问数据库的命令行应用程序(没有应用程序服务器)?以及如何做呢?
我已经尝试使用 InitialContext 对象并在上下文中查找数据源,但由于我没有应用程序服务器,我不知道如何访问资源。有什么想法吗?
谢谢
Is it possible to create a command line application (without an application server) That uses a connection pool in order to access the database?. And how to do it?
I've tried it using an InitialContext object and look up for the datasource in the context but since i don't have an application server i don't know how to access the resource. any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://commons.apache.org/dbcp/guide/jndi-howto。 html 向您展示了如何操作
http://commons.apache.org/dbcp/guide/jndi-howto.html shows you how
使用独立的连接池库,例如 Apache Commons DBCP 或 C3P0。
Use a standalone connection pool library such as Apache Commons DBCP or C3P0.