Simultaneous deployment of Java servlet and database connection pools

Source: Internet
Author: User
Tags auth query resource access tomcat
servlet| Data | database | database connection keywords: Servlet connection pool

Author: Jrq

Body:

Test Web Application Environment: Win2K Pro + Tomcat 5.0

Note the order in which the servlet and connection pools are deployed in the Web.xml file in the Web application.

Web.xml files, in <web-app> tags, you need to write <servlet> and <servlet-mapping&gt, and then write <resource-ref>.
Otherwise, the context of this Web application does not start properly when Tomcat starts, and this Web application is not accessed properly.

The Web.xml concise example of a servlet and connection pool deployment at the same time is as follows:
---------------
<web-app>
<servlet>
<servlet-name>query</servlet-name>
<servlet-class>BookQuery</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>query</servlet-name>
<url-pattern>/query</url-pattern>
</servlet-mapping>

<resource-ref>
<description>access DataSource example</description>
<res-ref-name>jdbc/access</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
------------------

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.