当前位置: 技术问答>java相关
jakarta-tomcat.zip 与 JDK1.3.1.exe解压后需要安装吗?
来源: 互联网 发布时间:2015-09-20
本文导语: jakarta-tomcat.zip,JDK1.3.1.exe解压后发现没有安装文件setup.exe之类的, 是不是不用安装的呀? | 你可能是下载文件有问题,你要下载一个有SETUP.EXE的文件, TOMCAT是要安装的啊,还有那个JDK也要安装的...
jakarta-tomcat.zip,JDK1.3.1.exe解压后发现没有安装文件setup.exe之类的,
是不是不用安装的呀?
是不是不用安装的呀?
|
你可能是下载文件有问题,你要下载一个有SETUP.EXE的文件, TOMCAT是要安装的啊,还有那个JDK也要安装的啊,还得要配置的,不过好象TOMCAT也有不用安装的你找找,我没试过不用安装TOMCAT的,我用的是有SETUP.EXE的TOMCAT,
|
JDK1.3.1.exe需要安装的,
jakarta-tomcat.zip解压后,配置一下就行了的
jakarta-tomcat.zip解压后,配置一下就行了的
|
tomcat4.04以前的无需安装,jdk需要安装,就是执行JDK1.3.1.exe
|
JDK1.3.1.exe后直接运行就可以了
jakarta-tomcat.zip解压后,配置一下就行了的
jakarta-tomcat.zip解压后,配置一下就行了的
|
这样改,只要加一句:set JAVA_HOEM=c:JDK1.3
如下所示,然后执行BIN下的startup.bat就可以在浏览器里打http://localhost:8080访问了。
@echo off
rem $Id: startup.bat,v 1.7 2000/03/31 19:40:02 craigmcc Exp $
rem Startup batch file for tomcat servner.
rem This batch file written and tested under Windows NT
rem Improvements to this file are welcome
set JAVA_HOEM=c:JDK1.3
if not "%TOMCAT_HOME%" == "" goto start
SET TOMCAT_HOME=.
if exist %TOMCAT_HOME%bintomcat.bat goto start
SET TOMCAT_HOME=..
if exist %TOMCAT_HOME%bintomcat.bat goto start
SET TOMCAT_HOME=
echo Unable to determine the value of TOMCAT_HOME.
goto eof
:start
call %TOMCAT_HOME%bintomcat start %1 %2 %3 %4 %5 %6 %7 %8 %9
:eof
如下所示,然后执行BIN下的startup.bat就可以在浏览器里打http://localhost:8080访问了。
@echo off
rem $Id: startup.bat,v 1.7 2000/03/31 19:40:02 craigmcc Exp $
rem Startup batch file for tomcat servner.
rem This batch file written and tested under Windows NT
rem Improvements to this file are welcome
set JAVA_HOEM=c:JDK1.3
if not "%TOMCAT_HOME%" == "" goto start
SET TOMCAT_HOME=.
if exist %TOMCAT_HOME%bintomcat.bat goto start
SET TOMCAT_HOME=..
if exist %TOMCAT_HOME%bintomcat.bat goto start
SET TOMCAT_HOME=
echo Unable to determine the value of TOMCAT_HOME.
goto eof
:start
call %TOMCAT_HOME%bintomcat start %1 %2 %3 %4 %5 %6 %7 %8 %9
:eof