Changes between Version 11 and Version 12 of waue/2009/0806


Ignore:
Timestamp:
Aug 6, 2009, 5:54:03 PM (15 years ago)
Author:
waue
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • waue/2009/0806

    v11 v12  
    115115 * 瀏覽: [http://localhost:8080/test/hello.jsp ]
    116116
    117 == 2.2 使用 war檔 ==
     117== 三、 引入war檔 ==
    118118
     119== 3.1 使用war ==
    119120下載 [http://tomcat.apache.org/tomcat-6.0-doc/appdev/sample/sample.war sample.war]到
    120121{{{
     
    134135   * 若放了war檔載webapps內,重新啟動tomcat,就會看到被解開的資料夾在 webapps內
    135136
     137== 3.2 sample.war的範例結構 ==
     138當解開sample.war檔,我們可以看到此目錄結構
     139
     140 ||  META-INF  || 放MANIFEST.MF的目錄 ,用jar打包通常會有此資料夾 || || 
     141 ||  index.html  || 主頁,包含jps與servlet 的連結||  || 
     142 || images  || 放圖片的目錄 ||  || 
     143 || hello.jsp   ||  此頁為jsp檔  ||ps1 ||   
     144 ||  WEB-INF || servlet 的目錄 || ps2 || 
     145
     146 * ps1: hello.jsp 為單一檔案,大部分的內容都是html的語法,jsp code僅為
     147{{{
     148#!jsp
     149<%= new String("Hello!") %>
     150}}}
     151 * ps2:
     152
     153
     154