Skip to content

Instantly share code, notes, and snippets.

@backslash112
Last active May 15, 2018 02:30
Show Gist options
  • Save backslash112/d224d1beddbf680f5939370cca80e9a2 to your computer and use it in GitHub Desktop.
Save backslash112/d224d1beddbf680f5939370cca80e9a2 to your computer and use it in GitHub Desktop.
Blog: Create Maven Project with Servlet in IntelliJ IDEA 2018
@WebServlet("/DemoServlet")
public class DemoServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<h3>Hello World!</h3>");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment