tomcat6.0+apache环境配置

tomcat6.0+apache环境配置

请问tomcat6.0+apache环境怎么配置,我是刚学java web的希望能讲的详细点,最好是带图解的。很急,万分感谢
网上有视频教程
能推荐个网址吗?谢谢
百度搜~实在是太多了!~
多个鸡巴  不懂装懂的人真他妈多啊
呵呵 这个世界会装逼的人怎么这么多那???!?
久违的马甲?没有比想不劳而获的人多吧。學微勤劳一点2在这里就能找到好多。
请教别人问题就要谦虚点,
满口脏话的,一般我不告诉他
装个tomcat就ok了
有必要再装个apache吗
把你写的web工程放到webapps文件夹下面不就ok了
但的必须要保证你的工程是web工程
你工程下至少有以下东西出现
一个WEB-INF文件夹
该文件夹下必须有一个文件web.xml 内容很简单 <web-app> </web-app>
一切ok
java用tomcat就可以!
下载:http://tomcat.apache.org/
配置:
readme说的很详细
(2.1) Download a binary distribution of Tomcat from:

      http://tomcat.apache.org

(2.2) Unpack the binary distribution into a convenient location so that the
      distribution resides in its own directory (conventionally named
      "apache-tomcat-[version]").  For the purposes of the remainder of this document,
      the symbolic name "$CATALINA_HOME" is used to refer to the full
      pathname of the release directory.
注:(我的电脑>属性>高级>环境变量>系统变量>新建:变量名:CATALINA_HOME,变量值:你放在tomcat的位置)
非法安装版的
(3) Start Up Tomcat

(3.1) Tomcat can be started by executing the following commands:

      $CATALINA_HOME\bin\startup.bat          (Windows)

      $CATALINA_HOME/bin/startup.sh          (Unix)

(3.2) After startup, the default web applications included with Tomcat will be
      available by visiting:

      http://localhost:8080/

(3.3) Further information about configuring and running Tomcat can be found in
      the documentation included here, as well as on the Tomcat web site:

      http://tomcat.apache.org


(4) Shut Down Tomcat

(4.1) Tomcat can be shut down by executing the following command:

      $CATALINA_HOME\bin\shutdown            (Windows)

      $CATALINA_HOME/bin/shutdown.sh        (Unix)