Skip to content

Instantly share code, notes, and snippets.

@sam
Created August 28, 2012 20:26
Show Gist options
  • Save sam/3503799 to your computer and use it in GitHub Desktop.
Save sam/3503799 to your computer and use it in GitHub Desktop.
# I get an HTTP 405: HTTP method GET is not supported by this URL
java_import javax.servlet.http.HttpServlet
class HelloWorld < HttpServlet
def process(request, response)
response.writer.println "Hello World!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment