作者:Lance Lavandowska 編譯:blueski
如果你經常去Servlet或JSP的新聞群組或者郵件清單,那麼一定會看到不少關於Model I 和Model II 方法的討論。究竟採用哪一種,這取決於你的個人喜好、團隊工作策略以及是否採用正統的OOP。
簡單地說,Model I將事務邏輯(business logic)和表示代碼(presentation code)融合在一起(如在HTML中);Model II則提倡最大限度地將所有的代碼放到內容表示之外。
Model I: 簡單的單層次應用
如果是在一個人人都精通Java和HTML的環境中,或者你獨自做著所有的工作,假如每個人都有清晰的編程結構和思路,那麼這種方法會很有效,不過這樣的假設不在本文討論範圍之內。這種方法的第一個優點是如果你的應用改變了,你只需維護一個檔案。而最大的缺陷是可讀性!除非十分小心,否則你的HTML和Java代碼會相互混雜,從而難以維護。
在下面這個例子中,我們將增加一個 TimeZone 元素,從而使它變成JSP檔案,它會返回基於時間的所期待的TimeZone。如果沒有提交 TimeZone,那麼預設的是伺服器的預設時間。
======================================================================
<xml version="1.0" ?>
<H1>Time JSP</H1>
<jsp:scriptlet>
//the parameter "zone" shall be equal to a number between 0 and 24 (inclusive)
TimeZone timeZone = TimeZone.getDefault(); //returns the default TimeZone for the server
if (request.getParameterValues("zone") != null)
{
String timeZoneArg = request.getParameterValues("zone")[0];
timeZone = TimeZone.getTimeZone("GMT+" + timeZoneArg + ":00");
// gets a TimeZone. For this example we´re just going to assume
// its a positive argument, not a negative one.
}
//since we´re basing our time from GMT, we´ll set our Locale to Brittania, and get a Calendar.
Calendar myCalendar = Calendar.getInstance(timeZone, Locale.UK);
</jsp:scriptlet>
<%= myCalendar.get(Calendar.HOUR_OF_DAY) %>:
<%= myCalendar.get(Calendar.MINUTE) %>:
<%= myCalendar.get(Calendar.SECOND) %>