讓IIS 6 支援 JSP (IIS整合Tomcat)

來源:互聯網
上載者:User
轉載 http://llying.iteye.com/blog/496541大家都瞭解在MS家族中iis作為internet伺服器可謂是赫赫有名,簡單,方便。 
而且相關的web程式(asp,asp.net)也是比比皆是。 
我們希望java開發的web程式可以和iis共存(共同使用80連接埠發布)。 
這方面的教程網上很多,多數是copy之後又copy,以至於有些細節一直含糊不清,也導致我走了許多彎路。在此留個腳印防止日後的錯誤。 
軟體及環境 
windows server 2003 
IIS    6.0 
Tomcat 6.0.20 
JDK    6.0 
JK isapi_redirect-1.2.14 (很多情況下是由於isapi_redirect 的版本不符,我之前用過最新的1.2.28但是沒有整合成功 大家可以嘗試一下,這個軟體好像不太好找,我在附件中將會給出) 
1.安裝IIS 
控制台--> 添加刪除程式 --> 添加刪除windows組件 

測試 

2.安裝java環境,這裡要用jdk而不是jre 
我安裝到 Java代碼  

  1. c:\java\jdk1.6  

不要忘記配置環境變數 
3.安裝tomcat 
我的安裝目錄是 Java代碼  

  1. C:\tomcat6  

啟動tomcat 
測試8080連接埠 

4.基本工作完成 下面我們進行整合 
安裝isapi_redirect-1.2.14 當然也可以直接使用isapi_redirect-1.2.14.dll + 設定檔手動編寫,不過對於首次安裝還是建議使用安裝檔案,防止設定檔書寫產生誤差導致整合不成功。 

 

一路next 
安裝目錄是 Java代碼  

  1. C:\Program Files\Apache Software Foundation\Jakarta Isapi Redirector  

5.開啟iis的管理介面 
查看預設網站是否存在 

 

中的jakarta的虛擬目錄 
並查看屬性中 

 

是否存在jakarta的篩選器。至於向上的綠色箭頭可能沒有(網上很多都指出要求由此,實際上只有配置之後首次訪問的時候,才進行載入)只要不是紅色就可以。 
如果沒有則建立, 
添加篩選器 名稱jakarta 檔案地址 C:\Program Files\Apache Software Foundation\Jakarta Isapi Redirector\bin\isapi_redirect.dll 
建立虛擬目錄 

 

別名 jakarta (必須) 路徑 C:\Program Files\Apache Software Foundation\Jakarta Isapi Redirector\bin\ 
存取權限 

 
不要忘記 運行指令碼 執行 勾選 
ok 
8.我們在tomcat app下面隨便建立個工程 我這裡是目錄名0431la 
修改設定檔 
C:\Program Files\Apache Software Foundation\Jakarta Isapi Redirector\conf\uriworkermap.properties Java代碼  

  1. # uriworkermap.properties - IIS  
  2. #  
  3. # This file provides sample mappings for example wlb  
  4. # worker defined in workermap.properties.minimal  
  5. # The general syntax for this file is:  
  6. # [URL]=[Worker name]  
  7.   
  8. /admin/*=wlb  
  9. /manager/*=wlb  
  10. /jsp-examples/*=wlb  
  11. /servlets-examples/*=wlb  
  12.   
  13. # Optionally filter out all .jpeg files inside that context  
  14. # For no mapping the url has to start with exclamation (!)  
  15.   
  16. !/servlets-examples/*.jpeg=wlb  
  17.   
  18. #  
  19. # Mount jkstatus to /jkmanager  
  20. # For production servers you will need to  
  21. # secure the access to the /jkmanager url  
  22. #  
  23. /jkmanager=jkstatus  
  24. /0431la/*=wlb  

我們重啟tomcat 和 iis 並訪問測試 
iis的重啟可以通過滑鼠右鍵我的電腦 --> 管理 進行重啟 

 

接下來我們可以進行測試 

ok了 雖然這不是我們的最終結果 但是至少我們之前配置的沒有問題了 

下面我們進行虛擬機器主機的配置 
9.我們把0431la目錄放到c盤根目錄並配置tomcat的虛擬機器主機 Java代碼  

  1.  <Host name="www.0431.la" debug="0" appBase="c:\0431la" unpackWARs="true" autoDeploy="true">  
  2. <Context path="" docBase="c:\0431la" debug="0" reloadable="true"/>  
  3. </Host>  

10.在iis下面配置虛擬機器主機的映射目錄 
並添加jakarta虛擬目錄 和 isapi篩選 配置過程可參考第五步 

11.修改設定檔 
C:\Program Files\Apache Software Foundation\Jakarta Isapi Redirector\conf\uriworkermap.properties Java代碼  

  1. # uriworkermap.properties - IIS  
  2. #  
  3. # This file provides sample mappings for example wlb  
  4. # worker defined in workermap.properties.minimal  
  5. # The general syntax for this file is:  
  6. # [URL]=[Worker name]  
  7.   
  8. /admin/*=wlb  
  9. /manager/*=wlb  
  10. /jsp-examples/*=wlb  
  11. /servlets-examples/*=wlb  
  12.   
  13. # Optionally filter out all .jpeg files inside that context  
  14. # For no mapping the url has to start with exclamation (!)  
  15.   
  16. !/servlets-examples/*.jpeg=wlb  
  17.   
  18. #  
  19. # Mount jkstatus to /jkmanager  
  20. # For production servers you will need to  
  21. # secure the access to the /jkmanager url  
  22. #  
  23. /jkmanager=jkstatus  
  24. /0431la/*=wlb  
  25. /*.jsp=wlb  

讓jsp請求交由tomcat處理 
呵呵 
重啟iis 和 tomcat 看看我們的成果 

我們可以考但jsp請求完全正常解析了。 Java代碼  

  1. <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP 'index.jsp' starting page</title>  
  13.     <meta http-equiv="pragma" content="no-cache">  
  14.     <meta http-equiv="cache-control" content="no-cache">  
  15.     <meta http-equiv="expires" content="0">      
  16.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  17.     <meta http-equiv="description" content="This is my page">  
  18.     <!--  
  19.     <link rel="stylesheet" type="text/css" href="styles.css">  
  20.     -->  
  21.   </head>  
  22.     
  23.   <body>  
  24.     This is my JSP page. <br>  
  25.   </body>  
  26. </html>  

該jsp是myeclipse工程自動產生的。

  • isapi_redirect-1.2.14.rar (3.9 MB)
  • 下載次數: 955
  • 查看圖片附件
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.