More unused
This commit is contained in:
parent
6c8744d5aa
commit
da20ce1a80
11 changed files with 1 additions and 55 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,7 +4,7 @@ tomcat.5000
|
||||||
|
|
||||||
# Gradle generated files
|
# Gradle generated files
|
||||||
.gradle
|
.gradle
|
||||||
build/
|
app/build
|
||||||
|
|
||||||
# IntelliJ Idea project files
|
# IntelliJ Idea project files
|
||||||
.idea
|
.idea
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,16 +0,0 @@
|
||||||
<%@ page import="model.HelloJspViewModel" %>
|
|
||||||
<html>
|
|
||||||
<body>
|
|
||||||
<h2>Hello Jsp, simple data from Servlet: <%=request.getAttribute("simple")%></h2>
|
|
||||||
<ol>
|
|
||||||
<%
|
|
||||||
HelloJspViewModel model = (HelloJspViewModel)request.getAttribute("complex");
|
|
||||||
for(int el : model.getData()) { %>
|
|
||||||
<li>
|
|
||||||
<%=el%>
|
|
||||||
<% out.print(":" + el); // or as ordinary java code %>
|
|
||||||
</li>
|
|
||||||
<% } %>
|
|
||||||
</ol>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
File diff suppressed because one or more lines are too long
|
@ -1,27 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
||||||
<link rel="stylesheet" href="/css/pure-min.css">
|
|
||||||
<title>the Book Store</title>
|
|
||||||
<style>
|
|
||||||
.main {
|
|
||||||
padding: 2em;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
<h1>the Test Site</h1>
|
|
||||||
|
|
||||||
Welcome to this Fantastic Web Page.
|
|
||||||
|
|
||||||
<p> The following services are available today:
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li> <a href = "http://localhost:8080/Survey"> THE SURVEY</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Binary file not shown.
Loading…
Reference in a new issue