From 2fda610a5b5c4b1b906eaf72405e225df19dbc02 Mon Sep 17 00:00:00 2001 From: Hengye Date: Sat, 29 Feb 2020 20:39:45 +0800 Subject: Add JettyStaticResourceServer to policy-endpoints Using DefaultServlet to manage static resources on Jetty Server. Issue-ID: POLICY-2311 Signed-off-by: Hengye Change-Id: Ife0eda06334eb0b6350110254945975050181f20 --- .../src/test/resources/webapps/alt-root/index.html | 28 ++++++++++++++++++++++ .../src/test/resources/webapps/root/index.html | 28 ++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 policy-endpoints/src/test/resources/webapps/alt-root/index.html create mode 100644 policy-endpoints/src/test/resources/webapps/root/index.html (limited to 'policy-endpoints/src/test/resources/webapps') diff --git a/policy-endpoints/src/test/resources/webapps/alt-root/index.html b/policy-endpoints/src/test/resources/webapps/alt-root/index.html new file mode 100644 index 00000000..0948cebd --- /dev/null +++ b/policy-endpoints/src/test/resources/webapps/alt-root/index.html @@ -0,0 +1,28 @@ + + + + + Hello World + + +

Test Jetty Static Resources Alt-Root

+ + \ No newline at end of file diff --git a/policy-endpoints/src/test/resources/webapps/root/index.html b/policy-endpoints/src/test/resources/webapps/root/index.html new file mode 100644 index 00000000..a7cc120b --- /dev/null +++ b/policy-endpoints/src/test/resources/webapps/root/index.html @@ -0,0 +1,28 @@ + + + + + Hello World + + +

Test Jetty Static Resources Root

+ + \ No newline at end of file -- cgit 1.2.3-korg