我是Spring MVC的新手,我不知道如何從jsp頁面的數據庫打印表格。Spring MVC:從數據庫打印一張表
我用來做這樣使用的Java servlet:
<div class="alert alert-info" role="alert">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
<%
HashMap<String,Status> statusMap = new HashMap<String,Status>();
statusMap = AppUtils.getJobStatusLong();
DatabaseController db_controller = (DatabaseController)application.getAttribute("db_controller");
db_controller.openConnection();
out.print("<span> Today is "+AppUtils.getDate()+". You have " +db_controller.getClientNumber()+
" clients and "+db_controller.getJobNumber()+" jobs. </span>");
%>
</div>
但我聽說,在Spring MVC的視圖和模型是嚴格devided,所以通常我不應該使用Java scriplet在JSP?但是如何在沒有Java scriptlet的情況下做到這一點?
謝謝。
通常,不應該在Spring中使用scriplets,而應該在任何基於MVC的體系結構中使用scriplets。使用JSTL標籤庫。 – drgPP