List of usage examples for javax.servlet.http HttpServlet subclass-usage
From source file WebAppProperties.java
public class WebAppProperties extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); PrintWriter out = resp.getWriter(); ServletContext context = getServletContext(); String displayName = context.getServletContextName();
From source file WebAppProperties.java
public class WebAppProperties extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); PrintWriter out = resp.getWriter(); ServletContext context = getServletContext(); String displayName = context.getServletContextName();
From source file net.vicp.lylab.util.timer.LYPlan.java
/**
*
* @author Young Lee
*
* LYPlan is a tiny schedule framework, could be apply to multitude purpose.<br>
*
From source file com.autobizlogic.abl.mgmt.ConsoleServlet.java
/**
* The servlet used by the console to communicate with the business logic engine.
* If you want to be able to view your business logic using the ABL Console,
* you need to add the following to your web.xml:
* <code>
* <servlet>
From source file AreaCode.java
public class AreaCode extends HttpServlet { private Object[][] data = new Object[][] { { "Yukon Territory", new int[] { 867 } }, }; Properties lookup = new Properties(); public void init() { for (int i = 0; i < data.length; i++) {
From source file AreaCode.java
public class AreaCode extends HttpServlet { private Object[][] data = new Object[][] { { "Yukon Territory", new int[] { 867 } }, }; Properties lookup = new Properties(); public void init() { for (int i = 0; i < data.length; i++) {
From source file streaming.spring.AutowireServlet.java
/** * * @author tom */ public class AutowireServlet extends HttpServlet {
From source file PostServlet.java
public class PostServlet extends HttpServlet { private SAXBuilder builder = new SAXBuilder(); private XPath nameXPath;
From source file Properties.java
public class Properties extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { PrintWriter out = resp.getWriter(); out.println("<html>"); out.println("<head>"); out.println("<title>My First Servlet</title>");
From source file ShoppingCartViewerRewrite.java
public class ShoppingCartViewerRewrite extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter();