如何在 Tomcat 6 和 MySQL 中使用连接池?
我正在构建一个网络应用程序,我想使用“连接池”,因为它带来了好处。 我读了一些教程,但我真的不明白我需要做什么。
如果有人能给我一个北,我很感激。
我正在使用 JSP/Servlet、MySQL、Tomcat 6 和 Netbeans 6.9.1。
此致, 瓦尔特·恩里克.
i'm building a web application and i want to use "Connection Pooling" because of the benefits that came with it.
I read some tutorials but i really don't understand what i need to do.
If someone could give me a north, i appreciate.
I'm using JSP/Servlet, MySQL, Tomcat 6 and Netbeans 6.9.1.
Best regards,
Valter Henrique.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否阅读过 http://tomcat.apache。 org/tomcat-6.0-doc/jndi-datasource-examples-howto.html#MySQL_DBCP_Example?
它向您展示了从网络应用程序访问数据库的所有步骤。
如果您需要使用 Java 代码(比 JSP 好得多)访问数据库,您的代码应该如下所示:
另外,请注意,您还应该关闭 try 块内使用的结果集和语句。请参阅http://tomcat.apache.org/ tomcat-6.0-doc/jndi-datasource-examples-howto.html#Random_Connection_Closed_Exceptions 了解更完整的示例。
Have you read http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html#MySQL_DBCP_Example?
It shows you all the steps to access your database from a web app.
If you need to access the database from withing Java code (much better than from JSP), your code should look like this :
Also, note that you should also close the resultsets and statements used inside the try block. See http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html#Random_Connection_Closed_Exceptions for a more complete example.