標籤:blog class tar art 檔案 http html com htm window load
JDK的安裝可以參考 http://www.cnblogs.com/emanlee/p/3702535.html ,然後安裝apache-tomcat
step1:http://tomcat.apache.org/download-70.cgi 下載apache-tomcat-7.0.12
step2:解壓檔案,這是綠色版本,無需安裝。比如放在 H:\software\ 下面
step3:"我的電腦"->"屬性"->"進階"->"環境變數"->系統變數
"建立"->變數名 CATALINA_BASE ,變數值 H:\software\apache-tomcat-7.0.53-windows-x64(為step2中解壓的地址)
"建立"->變數名 CATALINA_HOME ,變數值 H:\software\apache-tomcat-7.0.53-windows-x64(為step2中解壓的地址)
"建立"->變數名 TOMCAT_HOME ,變數值 H:\software\apache-tomcat-7.0.53-windows-x64(為step2中解壓的地址)
編輯在JDK安裝中建立的變數 classpath ,在後面添加 %CATALINA_HOME%\lib\servlet-api.ja r即可,中間用分號隔開
編輯在JDK安裝中建立的變數 path ,在後面添加 %TOMCAT_HOME%\bin 即可,中間用分號隔開
step4:啟動tomcat,點擊 bin\startup.bat ; 如不能啟動,換到cmd命令列啟動 startup.bat
H:\software\apache-tomcat-7.0.53-windows-x64\bin>startup.bat
step5: 在瀏覽器中輸入http://localhost:8080
看是否出現歡迎頁面,出現了就說明已安裝成功。