当前位置:  技术问答>java相关

我要在Tomcat4.0.1下新建一个项目需要配置那些内容?(内有详细描述)

    来源: 互联网  发布时间:2015-08-26

    本文导语:  我已将Apache1.3.22于Tomcat4.0.1集成发布目录都指向Tomcat的WebApp/ROOT,数据库也连接上了,现在要在ROOT下建立一个项目其文件全部(包括Class什么的,WEB-INF)都在一个hiss的文件夹中,请问如何配置Tomcat,需要配置那些内容? ...

我已将Apache1.3.22于Tomcat4.0.1集成发布目录都指向Tomcat的WebApp/ROOT,数据库也连接上了,现在要在ROOT下建立一个项目其文件全部(包括Class什么的,WEB-INF)都在一个hiss的文件夹中,请问如何配置Tomcat,需要配置那些内容?

|
希望对你有帮助

启动tomcat  
  安装完tomcat之后(具体安装过程略),要启动Tomcat很简单,首先可以查看tomcatbinstartup.bat文件,利用控制面板里面的系统->高级->环境变量对话框,新建环境变量TOMCAT_HOME和JAVA_HOME,使它们各自指向TOMCAT和JDK的根目录即可。另外为保险起见,可以在path里面把二者的路径添加进去。然后开启一个DOS窗口执行startup.bat。  启动Tomcat后,会有一个DOS窗口显示启动情况。此时访问http://localhost:8080可以看到Tomcat的一些示例。  



三.配置  
  下一步工作就是如何把Tomcat插入IIS,使二者协同工作。主要分以下几个步骤:  
1、在Windows注册表中注册:  
  将下面的begin和end之间的Jakarta.reg文件装入机器,我的Tomcat装在c:\jakarta-tomcat,你可根据自己的环境修改Jakarta.reg文件  
Jakarta.reg:  
---begin---  
Windows  Registry  Editor  Version  5.00  



[HKEY_LOCAL_MACHINESOFTWAREApache  Software  FoundationJakarta  Isapi  Redirector1.0]  
"extension_uri"="/jakarta/isapi_redirect.dll"  
"log_file"="c:\jakarta-tomcat\logs\isapi.log"  
"log_level"="debug"  
"worker_file"="c:\jakarta-tomcat\conf\workers.properties"  
"worker_mount_file"="c:\jakarta-tomcat\conf\uriworkermap.properties"  
---end---  
注:其中的路径需改成你的tomcat的安装路径。  



2、打开IIS管理器,在"默认WEB站点”中建立一个虚拟目录jakarta,让它的路径指向isapi_redirect.dll所在目录。(在3.1  bin中可能没有这个dll,你可以从3.2的biniisnt4i386目录中拷贝一个过来。该虚拟目录应被设置为"可执行”。  
3、利用IIS管理器,把isapi_redirect.dll设置为"默认WEB站点”的ISAPI筛选器,名称可以任起。  
4、重启IIS,确认刚才添加的ISAPI筛选器前面标了一个绿色向上的箭头然后重启Tomcat(执行tomcatbinshutdown.bat可关闭Tomcat)  此时,IIS应该已经可以处理*.jsp文件了。由于Tomcat设置中,默认的Root是  tomcatwebappsROOT,所以你可以在这个目录中放置一个jsp文件(例如  index.jsp),然后访问http://localhost/index.jsp,看一下效果。  如果按照上面的方法还是无法使IIS处理jsp文件,可以尝试在IIS管理器->默认WEB站点属性->主目录->配置中添加一个"应用程序映射”,把*.jsp文件映射到isapi_redirect.dll上。  



四.作为NT的服务  
  作为NT  service的设置比较简单。  
首先从3.2拷贝过来jk_nt_service.exe,然后把下面的内容保存起来,起名  
为wrapper.properties  
#  
#  $Header:  /home/cvs/jakarta-tomcat/src/etc/wrapper.properties,v  1.1  
#2000/05/03  11:54:49  shachor  Exp  $  
#  $Revision:  1.1  $  
#  $Date:  2000/05/03  11:54:49  $  
#  
#  
#  jk_service.properties  -  a  bootstrup  file  for  the  Tomcat  NT  service.  
#  
#  This  file  provides  jk_nt_service  with  the  needed  information  to  
#  start  tomcat  at  a  different  process.  
#  
#  As  a  general  note,  the  characters  $(  and  )  are  used  internally  to  define  
#  macros.  Do  not  use  them!!!  
#  
#  Whenever  you  see  a  set  of  lines  such  as:  
#  x=value  
#  y=$(x)something  
#  
#  the  final  value  for  y  will  be  valuesomething  
#  
#  Normaly  all  you  will  need  to  modify  is  the  first  two  properties,  i.e.  
#  wrapper.tomcat_home  and  wrapper.java_home.  Most  of  the  configuration  
#  is  derived  from  these  two.  
#  
#  
#  wrapper.tomcat_home  should  point  to  the  location  where  you  
#  installed  tomcat.  This  is  where  you  have  your  conf,  webapps  and  lib  
#  directories.  
#  
wrapper.tomcat_home=d:tomcat  
#  
#  wrapper.java_home  should  point  to  your  Java  installation.  Normally  
#  you  should  have  a  bin  and  lib  directories  beneath  it.  
#  
wrapper.java_home=d:JBuilder35jdk1.2.2  
#  
#------  ADVANCED  MODE  ------------------------------------------------  
#  Make  sure  that  you  read  the  how-to  before  making  too  many  changes.  
#---------------------------------------------------------------------  
#  
#  
#  Defining  where  the  service  is  going  to  put  the  standard  
#  output  of  Tomcat.  This  is  where  System.out.println  and  
#  System.err.println  goes  to.  
#  
wrapper.stdout=$(wrapper.tomcat_home)jvm.stdout  
wrapper.stderr=$(wrapper.tomcat_home)jvm.stderr  
#  
#  Additions  to  the  path.  put  here  directories  where  you  store  DLLs  for  
#  native  methods  etc.  
#  
wrapper.ld_path=d:  
wrapper.ld_path=c:  
#  
#  Defining  the  classpath.  All  the  rows  that  belongs  to  the  class_path  
#  property  are  concatenated  to  create  the  classpath  for  Tomcat.  
#  
#  If  you  have  additional  locations  that  you  would  like  to  add  to  the  
#  claspath  you  should  add  a  new  wrapper.class_path=  line.  
#  
wrapper.class_path=$(wrapper.tomcat_home)classes  
wrapper.class_path=$(wrapper.tomcat_home)libxml.jar  
wrapper.class_path=$(wrapper.tomcat_home)libwebserver.jar  
wrapper.class_path=$(wrapper.tomcat_home)libservlet.jar  
wrapper.class_path=$(wrapper.tomcat_home)libjasper.jar  
#  
#  This  is  where  Javac  is  located  in  JDK1.2.x  
#  
wrapper.class_path=$(wrapper.java_home)libtools.jar  
#  
#  and  a  tribute  to  JDK1.1.x  
#  
wrapper.class_path=$(wrapper.java_home)libclasses.zip  
#  
#  This  is  the  Java  interpreter  used  for  running  Tomcat  
#  
wrapper.javabin=$(wrapper.java_home)binjava.exe  
#  
#  This  is  Tomcat"s  startup  class  (the  class  that  contains  Tomcat"s 
#  starting  point.  
#  
wrapper.startup_class=org.apache.tomcat.startup.Tomcat  
#  
#  This  is  the  location  where  tomcat"s  server.xml  configuration  file  
#  is  located.  
#  
wrapper.server_xml=$(wrapper.tomcat_home)confserver.xml  
#  
#  The  NT  service  uses  AJP12  to  shutdown  Tomcat.  The  wrapper.shutdown_port  
#  tells  the  service  the  identity  of  the  port  that  is  used  by  AJP12.  
#  
wrapper.shutdown_port=8007  
#  
#  This  is  the  command  line  that  is  used  to  start  Tomcat.  You  can  *add*  extra  
#  parameters  to  it  but  you  can  not  remove  anything.  
#  
wrapper.cmd_line=$(wrapper.javabin)  -classpath  $(wrapper.class_path)  $(wrapp  
er.startup_class)  -config  $(wrapper.server_xml)  -home  $(wrapper.tomcat_home)  
  保存后,只需修改里面的wrapper.tomcat_home和wrapper.java_home使它们各自指向tomcat根目录和JDK根目录即可。  然后运行jk_nt_service  -I      服务名称可以随便起,例如tomcat或者jakarta等等都行。wrapper.properties的路径应为完整路径(包括wrapper.properties这个文件名)示例:jk_nt_service  -I  Jakarta  d:wrapper.properties  这样在控制面板->服务里面,我们可以看到一个名为Jakarta的服务,可以 在这里启动或者中止它 。

|
配置conf/sever.xml

添加一个


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 我要在 linux下 使用 OCI driver , 该如何配置?
  • 请问FreeBSD内存的情况,我要以此决定我新机器的配置。
  • 我要从一个配置文件中提出 [ ] 中的东西
  • 救命啊,我要崩溃了!!!!!!!(关于配置的问题)
  • 我要配置一台web服务器~~~~紧急求救!~!不惜重分!高人指路!!!
  • 进程间通信:pthread_cond使用在线程间,我要进程间条件同步(没有情缘关系的进程),采用什么方呢?也就是说我要在UNIX实现WIN32上命名Event的功能
  • 我要懂什么才行呀?
  • DHCPD服务开启不了,系统提示:我要声明某个网卡(因为我有两块网卡),不知道怎么搞
  • 我要学Java了,可是不知怎末学
  • 怎么跟我要activation key??
  • 如果我要用openFileDialog我应该import哪些?
  • 请问我要加载内核模块 ipip.o 怎么做
  • 怎么写linux和windows2000的架构区别!我要作业!谢谢
  • 我要生成java 的文档在dos 下用什么命令.
  • [怪象论坛]为什么总有那么多“我要……”?
  • 我要能访问以汉字命名的网页吗?
  • 我要处理用户输入的一个字符窜。怎样写用户输入这段代码?
  • 请问:再局域网中怎样用代理服务器,我要用GOOGLE!!
  • 我要为读写一个数据表做一个进度条如何做
  • 我要学UNIX了,请问该从哪里开始?
  • 我要tcpdump的安装包, 大家帮我找找, 哪里可以下载????急
  • 我要實現訪問NTFS?
  • 我要在aix下debug跟踪程序C++,需要安装什么东西?
  • 请问一下,在Solaris中我要如何安装MySql
  • 我要怎样让它变成3?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3