close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_core.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Aug 6, 2009, 5:54:03 PM (16 years ago)
- Author:
-
waue
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v11
|
v12
|
|
115 | 115 | * 瀏覽: [http://localhost:8080/test/hello.jsp ] |
116 | 116 | |
117 | | == 2.2 使用 war檔 == |
| 117 | == 三、 引入war檔 == |
118 | 118 | |
| 119 | == 3.1 使用war == |
119 | 120 | 下載 [http://tomcat.apache.org/tomcat-6.0-doc/appdev/sample/sample.war sample.war]到 |
120 | 121 | {{{ |
… |
… |
|
134 | 135 | * 若放了war檔載webapps內,重新啟動tomcat,就會看到被解開的資料夾在 webapps內 |
135 | 136 | |
| 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 | |