程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 在win98下安裝JSP環境(jswdk或tomcat在Jdk1.3下)

在win98下安裝JSP環境(jswdk或tomcat在Jdk1.3下)

編輯:關於JSP

在win98下安裝JSP環境 (jswdk-1.0.1或tomcat3.1在Jdk1.3下)


在PWIN98SE環境下 ,我使用JSP運行環境為JSWDK-1.0.1和JDK1.3,要到http://java.sun.com處下載。JDK1.3安裝過程很簡單,JSWDK1.0.1無須安裝只要解壓縮即可。然後修改AUTOEXEC.BAT如下:
  PATH=%PATH%;c:jdk1.3
  set CLASSPATH=C:jdk1.3libTools.jar;C:jdk1.3libdt.jar
  set JAVA_HOME=c:jdk1.3(我把JDK裝到了C盤)
  有兩個問題有必要說明一下。
  一. 啟動jswdk-1.0.1下的startserver.bat的時候,報告Out of Environment Space錯誤。(tomcat3.1通 ,啟動tomcatin下的 startup.bat)
  查閱JSWDK1.0.1的redme.html得到:
  Out of Environment Space error message
  On Windows 95/98 systems, you may see an "Out of Environment Space" error message when starting the server. This happens if Windows provides too small a space for environment variables. To work around this limitation:
  1 Close the DOS window (the error can corrupt its CLASSPATH variable).
  2 Open a new DOS window.
  3 Click on the MS-DOS icon at the top left of the window.
  4 Select the Properties option.
  5 Click on the Memory tab.
  6 Adjust the "Initial Environment" drop-down box from "Auto" to "2816".
  7 Click OK.
  8 Start the server.
  明白了,只要調整startserver.bat(startup.bat) 的屬性,將“內存”中的“初始環境”由“自動”修改做“2186”就搞定了。

二.還是無法啟動SERVER,好象有個彈出窗口在出錯誤信息,但無法捉到,轉向輸出也不起作用
  打開startserver.bat仔細檢查,原來大部分都是在設置環境變量,只有一句關鍵的:
  start java com.sun.web.shell.Startup %1 %2 %3 %4 %5 %6 %7 %8 %9
  那麼試著在DOS窗口下運行JAVA,提示注冊表訪問錯誤,鍵名為:
  “SoftwareJavaSoftJava Runtime Environment”
  打開注冊表檢查,發現鍵名是“Java運行時環境”,靠,真不知道JDK的安裝程序在搞什麼飛機,把這個鍵名居然給本地化了!改回英文,再在IE5中敲入http://127.0.0.1:8080/,
  呵,終於看到了JavaServer (tm) Web Development Kit 的大字標題。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved