org.jfree.chart.servlet

Class DisplayChart


public class DisplayChart
extends HttpServlet

Servlet used for streaming charts to the client browser from the temporary directory. You need to add this servlet and mapping to your deployment descriptor (web.xml) in order to get it to work. The syntax is as follows: <servlet> <servlet-name>DisplayChart</servlet-name> <servlet-class>org.jfree.chart.servlet.DisplayChart</servlet-class> </servlet> <servlet-mapping> <servlet-name>DisplayChart</servlet-name> <url-pattern>/servlet/DisplayChart</url-pattern> </servlet-mapping>

Constructor Summary

DisplayChart()
Default constructor.

Method Summary

void
init()
Init method.
void
service(HttpServletRequest request, HttpServletResponse response)
Service method.

Constructor Details

DisplayChart

public DisplayChart()
Default constructor.

Method Details

init

public void init()
            throws ServletException
Init method.

service

public void service(HttpServletRequest request,
                    HttpServletResponse response)
            throws ServletException,
                   IOException
Service method.
Parameters:
request - the request.
response - the response.