Skip to content

Instantly share code, notes, and snippets.

@nipunaupeksha
Created August 29, 2021 14:39
Show Gist options
  • Save nipunaupeksha/fa244a921515f3f08b1408e121e99e60 to your computer and use it in GitHub Desktop.
Save nipunaupeksha/fa244a921515f3f08b1408e121e99e60 to your computer and use it in GitHub Desktop.
doGet() method
package com.example.quirk.servlets;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class GetServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
super.doGet(req, resp);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment