diff options
author | Andrei Belov <defan@nginx.com> | 2019-03-01 18:30:09 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2019-03-01 18:30:09 +0300 |
commit | 3c3720cba7154bc168cbd00c74817626bb53e140 (patch) | |
tree | da1500f7c6bd5e90ecf45299b6f4b19a29d521cd /pkg/deb/debian.module/unit.example-jsc-app | |
parent | 315a864c27aa27a48c013c4a1ef67a099ffea894 (diff) | |
parent | df02b03824065389c73213b19736140442cf63bc (diff) | |
download | unit-3c3720cba7154bc168cbd00c74817626bb53e140.tar.gz unit-3c3720cba7154bc168cbd00c74817626bb53e140.tar.bz2 |
Merged with the default branch.
Diffstat (limited to 'pkg/deb/debian.module/unit.example-jsc-app')
-rw-r--r-- | pkg/deb/debian.module/unit.example-jsc-app | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/deb/debian.module/unit.example-jsc-app b/pkg/deb/debian.module/unit.example-jsc-app new file mode 100644 index 00000000..be01e123 --- /dev/null +++ b/pkg/deb/debian.module/unit.example-jsc-app @@ -0,0 +1,12 @@ +<%@ page contentType="text/plain"%><%@ page import="java.util.*" %>This is plain text response for "<%= request.getMethod() %> <%= request.getRequestURI() %>". +Here is the list of all system properties: +<% + Properties p = System.getProperties(); + Enumeration keys = p.keys(); + while (keys.hasMoreElements()) { + String key = (String) keys.nextElement(); + String value = (String) p.get(key); + out.println(" " + key + " : " + value); + } +%> +<% response.addHeader("X-Unit-JSP", "ok"); %> |