tomcat 端 启动项目,废弃掉Eclipse自带启动

1.需要将tomcat的webapps 关联到项目的工作空间。

  在apache-tomcat-6.0.41\conf下添加conf\Catalina\localhost,也就是建立Catalina和localhost文件夹。

  在localhost中添加文件ROOT.xml,文件内容:

  

<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
<Context path="" docBase="D:\projects\PayPlatform\target\payplatform-0.1-BETA.war" />
-->
<!--
<Context path="" docBase="D:\projects\BankCompany\payPlatform\trunk\target\payplatform-web.war" />
-->

<Context path="" docBase="D:\dev-rcrp-tree\newRcRp\refund-web\target\jd-web.war" />

 

其中docBase指定项目的war包位置。就可以了~

 

还有另外一种配置一样也能达到tomcat直接通过配置war包路径来指定发布。

在tomcat的根目录下的conf下有个server.xml 文件,通过在<host></host>中间添加节点<Context path="" docBase="D:\projects\BankCompany\payPlatform\trunk\target\payplatform-web.war" />

一样能达到效果。

 

那么问题来了,如果这两个配置文件都制定了docBase了,tomcat要怎么执行呢?优先是先找tomcat/conf/Catalina/localhost下的.xml配置文件,没有才会走server.xml

posted @ 2014-09-17 12:11  天狼136520  阅读(255)  评论(0编辑  收藏  举报