List of usage examples for javax.servlet.http HttpServlet subclass-usage
From source file org.roda.wui.servlets.RodaWuiServlet.java
public class RodaWuiServlet extends HttpServlet { private static final Logger LOGGER = LoggerFactory.getLogger(RodaWuiServlet.class); private static final long serialVersionUID = 1523530268219980563L; @Override public void init() throws ServletException {
From source file FlavorListServlet.java
/** * Returns the list of the most popular flavors */ public class FlavorListServlet extends HttpServlet { public static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
From source file InsertClobToMySqlServlet.java
public class InsertClobToMySqlServlet extends HttpServlet { public static Connection getConnection() throws Exception { String driver = "org.gjt.mm.mysql.Driver"; String url = "jdbc:mysql://localhost/databaseName"; String username = "root"; String password = "root";
From source file io.muic.ooc.webapp.servlet.LogoutServlet.java
/** * * @author gigadot */ public class LogoutServlet extends HttpServlet {
From source file com.android.get.AndroidJSONMethod.java
/** * * @author RLN */ public class AndroidJSONMethod extends HttpServlet {
From source file twhaiti.HaitiServlet.java
@SuppressWarnings("serial") public class HaitiServlet extends HttpServlet { private static final URLFetchService fetch = URLFetchServiceFactory.getURLFetchService(); private static final String HAITI_SEARCH_QUERY = "&ands=&phrase=&ors=%23need+%23imok+%23damage+%23injured¬s=RT+via+epiccolorado+text+tweakthetweet+roubboy+posting+twitagsearch+openstreetmap&tag=haiti&lang=all&from=&to=&ref=&near=&since=&until=&rpp=100"; public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
From source file sit.bank.servlet.ThaiBahtAjaxServlet.java
/** * * @author chakree30584 */ public class ThaiBahtAjaxServlet extends HttpServlet {
From source file DisplayBlobServlet.java
public class DisplayBlobServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { Blob photo = null; Connection conn = null; Statement stmt = null;
From source file furkan.app.tictactoewebsocket.TicTacToeServlet.java
/** * * @author SVLLA */ @WebServlet(name = "ticTacToeServlet", urlPatterns = "/tictactoe") public class TicTacToeServlet extends HttpServlet {
From source file org.openxdata.designer.server.FileOpenServlet.java
/**
* Servlet that handles opening of files.
*
* www.openxdata.org - Licensed as written in license.txt and original sources of this file and its authors are found in sources.txt.
*
*/