Skip to content

Commit

Permalink
Update view.jsp
Browse files Browse the repository at this point in the history
  • Loading branch information
jarry authored Apr 26, 2024
1 parent c05cd71 commit 5ad5600
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mvx/mvc/java/WEB-INF/template/view.jsp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<%!--
// /WEB-INF/template/view.jsp
// View,使用JSP
// 1. View,负责视图呈现。早期有JSP、JSTL、Velocity、Freemarker等。
// 2. 主要就是将数据按照HTML/CSS输出,得到Web页面。
// 3. 这里使用JSP演示,JSP已经很少使用了。
// 4. 新的前后分离,采取由JS来渲染页面,后端只是提供API。因此这在微服务体系中可以省略。
%-->
<%@ page import="mvc.Model" %>
<html>
Expand All @@ -18,4 +21,4 @@
<div>Num: <%= model.getNum()%></div>
<% } %>
</body>
</html>
</html>

0 comments on commit 5ad5600

Please sign in to comment.