Package org.logicalcobwebs.proxool.admin.servlet

The AdminServlet provides information about running pools.

See:
          Description

Class Summary
AdminServlet Use this to admin each pool within Proxool.
 

Package org.logicalcobwebs.proxool.admin.servlet Description

The AdminServlet provides information about running pools. This is only relevant if you are using Proxool inside a web application. You can configure the servlet in any way you like, but this is an example web.xml fragment:

       <servlet>
           <servlet-name>Monitor</servlet-name>
           <servlet-class>org.logicalcobwebs.proxool.admin.servlet.AdminServlet</servlet-class>
       </servlet>

       <servlet-mapping>
           <servlet-name>Monitor</servlet-name>
           <url-pattern>/monitor</url-pattern>
       </servlet-mapping>