From 5bfdebb9e4161a689113d73775498949a09d7fb5 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Thu, 28 Feb 2019 18:02:42 +0300 Subject: Introducing Java Servlet Container beta. --- test/java/welcome_files/dir2/default.jsp | 3 +++ test/java/welcome_files/dir2/index.html | 1 + 2 files changed, 4 insertions(+) create mode 100644 test/java/welcome_files/dir2/default.jsp create mode 100644 test/java/welcome_files/dir2/index.html (limited to 'test/java/welcome_files/dir2') diff --git a/test/java/welcome_files/dir2/default.jsp b/test/java/welcome_files/dir2/default.jsp new file mode 100644 index 00000000..48627641 --- /dev/null +++ b/test/java/welcome_files/dir2/default.jsp @@ -0,0 +1,3 @@ +<%@ page contentType="text/html"%> +

You should see this on /dir2/ URL.

+<% response.addHeader("X-Unit-JSP", "ok"); %> diff --git a/test/java/welcome_files/dir2/index.html b/test/java/welcome_files/dir2/index.html new file mode 100644 index 00000000..5b111825 --- /dev/null +++ b/test/java/welcome_files/dir2/index.html @@ -0,0 +1 @@ +

You should see this on /dir2/ URL.

-- cgit