Last active
August 29, 2015 13:58
-
-
Save steinermatt/10378539 to your computer and use it in GitHub Desktop.
SAP HANA Cloud Platform - "Hello World" servlet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) | |
*/ | |
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { | |
response.getWriter().println("Hello World!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment