Gradle conversion

This commit is contained in:
Imbus 2024-02-08 14:25:04 +01:00
parent d401afc5f9
commit 9cb6ce21ef
59 changed files with 577 additions and 467 deletions

View file

@ -0,0 +1,16 @@
<%@ 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>