Our Bookshelf contains following titles:
- <% for (Book book : (ListAuthor: <%= book.getAuthor() %>
- - <% } %> - <%@ include file="shopping-cart-hint.jsp"%> - <%@ include file="visitor-counter.jsp"%> - - diff --git a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/book-notfound.jsp b/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/book-notfound.jsp deleted file mode 100644 index 284b1e4759..0000000000 --- a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/book-notfound.jsp +++ /dev/null @@ -1,11 +0,0 @@ - - - -Our Bookshelf doesn't contains this title:
-<%= book.getAuthor() %>:
-Please input a username:
-- Your shopping cart is holding - <% if (order.getItems().size() == 1) { %> - 1 item. - <% } else { %> - <%= (order.getItems().size()) %> items. - <% } %> - Checkout -
- <% } %> -<% } %> diff --git a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/shopping-cart.jsp b/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/shopping-cart.jsp deleted file mode 100644 index 31b25968ee..0000000000 --- a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/shopping-cart.jsp +++ /dev/null @@ -1,29 +0,0 @@ -<%@ page import="com.baeldung.enterprise.patterns.front.controller.data.Book" %> -<%@ page import="com.baeldung.enterprise.patterns.front.controller.data.Order" %> -<%@ page import="java.util.Map" %> - - - -You are about to buy the following books:
-- Total: <%= request.getAttribute("total") %> -
- - - diff --git a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/unknown.jsp b/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/unknown.jsp deleted file mode 100644 index b52b2de8d5..0000000000 --- a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/unknown.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - -Sorry, this command is not known!
- - diff --git a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/visitor-counter.jsp b/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/visitor-counter.jsp deleted file mode 100644 index 397364e2b3..0000000000 --- a/enterprise-patterns/intercepting-filter-pattern/src/main/webapp/WEB-INF/jsp/visitor-counter.jsp +++ /dev/null @@ -1,5 +0,0 @@ -<% Integer counter = (Integer) request.getAttribute("counter"); %> -<% if (counter != null && counter > 0) { %> -You are visitor #<%= counter %>. Logout
-<% } %>