惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
D
Darknet – Hacking Tools, Hacker News & Cyber Security
S
Schneier on Security
The Last Watchdog
The Last Watchdog
Cyberwarzone
Cyberwarzone
S
Securelist
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
Cyber Attacks, Cyber Crime and Cyber Security
L
Lohrmann on Cybersecurity
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
The Cloudflare Blog
V
V2EX
博客园_首页
博客园 - 聂微东
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
GRAHAM CLULEY
T
Tenable Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
L
LINUX DO - 最新话题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
SecWiki News
SecWiki News
博客园 - 三生石上(FineUI控件)
S
Secure Thoughts
N
News | PayPal Newsroom
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
T
Troy Hunt's Blog
博客园 - 【当耐特】
Forbes - Security
Forbes - Security
H
Hacker News: Front Page
A
About on SuperTechFans
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
D
DataBreaches.Net
P
Privacy & Cybersecurity Law Blog
Schneier on Security
Schneier on Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
D
Docker
P
Proofpoint News Feed

博客园 - say3say4的私人空间

期待 突破 解决 jboss和log4j的冲突问题 未来50家最具商业潜力网站名单(互联网周刊) java 和 c++ 之间通过 控制台 输入输出 传递数据 转贴_vc++ 编译 occi 接口的 环境设置 - say3say4的私人空间 结合开源项目(postgis mapserver ) 研究 oracle spatial oracle9i spatial 开发 occi (基于oci的c++接口) ajax应用体现_无需安装 msn等桌面软件 研习了一下google map api SWIG 万能语言粘合剂 AJAX和webgis在实际项目中的运用(电业局用电检查系统) 虚拟机VMWARE和移动硬盘的合作_移动办公 在C++中使用事件回调机制(通过Observer模式、函数指针等实现) 对DWR的学习告一段落,开发了结合具体应用的DEMO 不错的网站 回忆AOP 被google搜索到了 地震、停水、禽流感 关于讨论ajax,B/S框架,B/S界面的一个有用的站点
ant中最基本的设置
say3say4的私人空间 · 2005-12-14 · via 博客园 - say3say4的私人空间

build.xml

<?xml version="1.0" encoding="ISO-8859-1"?>

<project default="build" basedir=".">

   <property name="appname" value="test_dwr" />
   <property name="src.dir" value="src" />  
  
   <property environment="env"/>
      <property name="common_lib.dir" value="${env.TOMCAT_HOME}/common/lib" />  
    <!--  Server公用lib目录 -->  
    
    <property name="app.dir" value="${env.TOMCAT_HOME}/webapps/${appname}" />
    <property name="self_lib.dir" value="${app.dir}/web-inf/lib" />  
    <!-- 项目自身需要的lib -->
    
    <property name="build_classes.dir"  value="${app.dir}/web-inf/classes"/>
    <!-- 编译后class存放目录 -->  
   
   <target name="build">  
   
   <javac srcdir="${src.dir}"
     destdir="${build_classes.dir}"
     debug="on"
   >

 <!--  省了在系统classpath中设置一堆jar文件的麻烦 -->
     <classpath>
    <fileset dir="${self_lib.dir}">
     <include name="*.jar"/>
    </fileset>
  
    <fileset dir="${common_lib.dir}">
     <include name="*.jar"/>
    </fileset>
  
    </classpath>

  </javac>

  </target> 
 
 
  <!--   将编译后的class,发布到别的位置 -->
  <property name="axis_app_classes.dir"  value="${env.TOMCAT_HOME}/webapps/axis/WEB-INF/classes"/>
 
   <target name="axis" depends="build">   
  <copy todir="${axis_app_classes.dir}">
              <fileset dir="${build_classes.dir}"/>
             </copy>
             
   </target>  
  
     
</project>