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
voidinit()
Init method.
voidservice(HttpServletRequest request, HttpServletResponse response)
Service method.

Constructor Detail

DisplayChart

public DisplayChart()
Default constructor.

Method Detail

init

public void init()
Init method.

Throws: ServletException never.

service

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

Parameters: request the request. response the response.

Throws: ServletException ??. IOException ??.