<!--
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.
-->
<!--
General purpose build script for web applications and web services,
including enhanced support for deploying directly to a Tomcat
based server.
This build script assumes that the source code of your web application
is organized into the following subdirectories underneath the source
code directory from which you execute the build script:
docs Static documentation files to be copied to
the "docs" subdirectory of your distribution.
src Java source code (and associated resource files)
to be compiled to the "WEB-INF/classes"
subdirectory of your web application.
web Static HTML, JSP, and other content (such as
image files), including the WEB-INF subdirectory
and its configuration file contents.
-->
<!-- A "project" describes a set of targets that may be requested
when Ant is executed. The "default" attribute defines the
target which is executed if no specific target is requested,
and the "basedir" attribute defines the current working directory
from which Ant executes the requested task. This is normally
set to the current working directory.
-->
<project name="My Project" default="compile" basedir=".">
<!-- ===================== Property Definitions =========================== -->
<!--
Each of the following properties are used in the build script.
Values for these properties are set by the first place they are
defined, from the following list:
* Definitions on the "ant" command line (ant -Dfoo=bar compile).
* Definitions from a "build.properties" file in the top level
source directory of this application.
* Definitions from a "build.properties" file in the developer's
home directory.
* Default definitions in this build.xml file.
You will note below that property values can be composed based on the
contents of previously defined properties. This is a powerful technique
that helps you minimize the number of changes required when your development
environment is modified. Note that property composition is allowed within
"build.properties" files as well as in the "build.xml" script.
-->
<property file="build.properties"/>
<property file="${user.home}/build.properties"/>
<!-- ==================== File and Directory Names ======================== -->
<!--
These properties generally define file and directory names (or paths) that
affect where the build process stores its outputs.
app.name Base name of this application, used to
construct filenames and directories.
Defaults to "myapp".
app.path Context path to which this application should be
deployed (defaults to "/" plus the value of the
"app.name" property).
app.version Version number of this iteration of the application.
build.home The directory into which the "prepare" and
"compile" targets will generate their output.
Defaults to "build".
catalina.home The directory in which you have installed
a binary distribution of Tomcat. This will
be used by the "deploy" target.
dist.home The name of the base directory in which
distribution files are created.
Defaults to "dist".
manager.password The login password of a user that is assigned the
"manager-script" role (so that he or she can execute
commands via the "/manager" web application)
manager.url The URL of the "/manager" web application on the
Tomcat installation to which we will deploy web
applications and web services.
manager.username The login username of a user that is assigned the
"manager-script" role (so that he or she can execute
commands via the "/manager" web application)
-->
<property name="app.name" value="myapp"/>
<property name="app.path" value="/${app.name}"/>
<property name="app.version" value="0.1-dev"/>
<property name="build.home" value="${basedir}/build"/>
<property name="catalina.home" value="../../../.."/> <!-- UPDATE THIS! -->
<property name="dist.home" value="${basedir}/dist"/>
<property name="docs.home" value="${basedir}/docs"/>
<property name="manager.url" value="http://localhost:8080/manager/text"/>
<property name="src.home" value="${basedir}/src"/>
<property name="web.home" value="${basedir}/web"/>
<!-- ==================== External Dependencies =========================== -->
<!--
Use property values to define the locations of external JAR files on which
your application will depend. In general, these values will be used for
two purposes:
* Inclusion on the classpath that is passed to the Javac compiler
* Being copied into the "/WEB-INF/lib" directory during execution
of the "deploy" target.
Because we will automatically include all of the Java classes that Tomcat
exposes to web applications, we will not need to explicitly list any of those
dependencies. You only need to worry about external dependencies for JAR
files that you are going to include inside your "/WEB-INF/lib" directory.
-->
<!-- Dummy external dependency -->
<!--
<property name="foo.jar"
value="/path/to/foo.jar"/>
-->
<!-- ==================== Compilation Classpath =========================== -->
<!--
Rather than relying on the CLASSPATH environment variable, Ant includes
features that makes it easy to dynamically construct the classpath you
need for each compilation. The example below constructs the compile
classpath to include the servlet.jar file, as well as the other components
that Tomcat makes available to web applications automatically, plus anything
that you explicitly added.
-->
<path id="compile.classpath">
<!-- Include all JAR files that will be included in /WEB-INF/lib -->
<!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
<!--
<pathelement location="${foo.jar}"/>
-->
<!-- Include all elements that Tomcat exposes to applications -->
<fileset dir="${catalina.home}/bin">
<include name="*.jar"/>
</fileset>
<pathelement location="${catalina.home}/lib"/>
<fileset dir="${catalina.home}/lib">
<include name="*.jar"/>
</fileset>
</path>
<!-- ================== Custom Ant Task Definitions ======================= -->
<!--
These properties define custom tasks for the Ant build tool that interact
with the "/manager" web application installed with Tomcat. Before they
can be successfully utilized, you must perform the following steps:
- Copy the file "lib/catalina-ant.jar" from your Tomcat
installation into the "lib" directory of your Ant installation.
- Create a "build.properties" fil
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
linux系统tomcat7安装包,用于在linux系统上使用tomcat的web容器。Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。对于一个初学者来说,可以这样认为,当在一台机器上配置好Apache 服务器,可利用它响应HTML(标准通用标记语言下的一个应用)页面的访问请求。实际上Tomcat是Apache 服务器的扩展,但运行时它是独立运行的,所以当你运行tomcat 时,它实际上作为一个与Apache 独立的进程单独运行的。
资源推荐
资源详情
资源评论
收起资源包目录
linux tomcat7安装包 (633个子文件)
catalina.bat 13KB
tool-wrapper.bat 4KB
setclasspath.bat 3KB
digest.bat 2KB
configtest.bat 2KB
version.bat 2KB
startup.bat 2KB
shutdown.bat 2KB
Room.class 8KB
ChatServlet.class 7KB
SnakeWebSocketServlet.class 7KB
CompressionResponseStream.class 6KB
Clock2.class 6KB
DrawMessage.class 6KB
CompressionFilter.class 5KB
CompressionServletResponseWrapper.class 5KB
Snake.class 5KB
Client.class 5KB
AsyncStockServlet.class 5KB
Snake.class 5KB
SessionExample.class 4KB
SnakeAnnotation.class 4KB
JspCalendar.class 4KB
SnakeWebSocketServlet$SnakeMessageInbound.class 4KB
CookieExample.class 4KB
Room$Player.class 4KB
DrawboardEndpoint.class 4KB
ChatAnnotation.class 4KB
SnakeTimer.class 4KB
JspCalendar.class 3KB
RequestHeaderExample.class 3KB
ChatWebSocketServlet$ChatMessageInbound.class 3KB
Stockticker.class 3KB
RequestInfoExample.class 3KB
RequestParamExample.class 3KB
SessionListener.class 3KB
ChatServlet$MessageSender.class 3KB
Async0.class 3KB
Stockticker$Stock.class 3KB
DrawboardEndpoint$3$1.class 3KB
TableBean.class 3KB
ShowSource.class 2KB
ExamplesConfig.class 2KB
ExampleFilter.class 2KB
ContextListener.class 2KB
ColorGameBean.class 2KB
DrawboardEndpoint$1.class 2KB
NumberGuessBean.class 2KB
Async2$1.class 2KB
HelloWorldExample.class 2KB
ValuesTag.class 2KB
CompressionFilterTestServlet.class 2KB
Entries.class 2KB
FooTag.class 2KB
EchoAttributesTag.class 2KB
EchoAnnotation.class 2KB
Async0$1.class 2KB
Client$1.class 2KB
EchoMessage.class 2KB
Async1$1.class 2KB
CookieFilter.class 2KB
ChatWebSocketServlet.class 2KB
EchoEndpoint$EchoMessageHandler.class 2KB
DrawboardEndpoint$2.class 2KB
DummyCart.class 2KB
Async1.class 2KB
Async2.class 2KB
DebugValidator.class 2KB
ShuffleSimpleTag.class 1KB
LogTag.class 1KB
EchoStream$EchoStreamInbound.class 1KB
Room$MessageType.class 1KB
Location.class 1KB
ExampleTagBase.class 1KB
ServletToJsp.class 1KB
Location.class 1KB
DrawboardEndpoint$3.class 1KB
TileSimpleTag.class 1KB
Direction.class 1KB
EchoMessage$EchoMessageInbound.class 1KB
Functions.class 1KB
EchoEndpoint.class 1KB
FindBookSimpleTag.class 1KB
Direction.class 1KB
RepeatSimpleTag.class 1KB
HTMLFilter.class 1KB
SnakeWebSocketServlet$1.class 1KB
Async3.class 1015B
ValuesBean.class 983B
EchoStream.class 980B
Location$1.class 923B
Entry.class 911B
Location$1.class 899B
Room$2.class 899B
DrawboardContextListener.class 890B
SnakeTimer$1.class 838B
HelloWorldSimpleTag.class 764B
Room$1.class 747B
BookBean.class 736B
Room$1$1.class 725B
共 633 条
- 1
- 2
- 3
- 4
- 5
- 6
- 7
资源评论
- xing5302018-02-10可以用不错
- shu0102018-04-08很好,可以使用的
- qq_356475032017-12-06不错,可以用
- Cheney5509953532017-09-29可以用不错
天才小小布
- 粉丝: 268
- 资源: 12
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功