ゞ沉默是金ゞ
魚離不開水,但是沒有說(shuō)不離開哪滴水.
BlogJava
首頁(yè)
新隨筆
新文章
聯(lián)系
聚合
管理
posts - 98,comments - 104,trackbacks - 0
<
2025年6月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
常用鏈接
我的隨筆
我的文章
我的評(píng)論
我的參與
最新評(píng)論
留言簿
(3)
給我留言
查看公開留言
查看私人留言
隨筆分類
Ant
Broker(1)
DB(8)
EJB(2)
eXtreme(7)
Hibernate
HTTP(6)
Java EE(8)
Java SE(31)
Jrules
Maven
Spring
Spring基礎(chǔ)(1)
Struts
webservice(2)
其他收集(6)
性能測(cè)試(1)
搜索引擎
面試相關(guān)
隨筆檔案
2012年12月 (1)
2012年11月 (1)
2012年8月 (16)
2012年7月 (6)
2012年6月 (11)
2011年3月 (1)
2010年12月 (1)
2010年11月 (2)
2010年8月 (1)
2010年7月 (3)
2010年5月 (1)
2010年1月 (1)
2009年12月 (3)
2009年11月 (2)
2009年8月 (1)
2009年6月 (4)
2009年5月 (1)
2009年4月 (1)
2009年3月 (6)
2009年2月 (3)
2008年12月 (4)
文章分類
EJB(1)
代碼收集
實(shí)用腳本
文章檔案
2012年6月 (2)
2012年1月 (1)
2011年8月 (1)
2009年11月 (1)
2009年3月 (1)
2009年2月 (2)
搜索
最新評(píng)論
1.?re: How to Create Client/Server Keystores using Java Keytool
Shawn?
--Freud
2.?re: HTTP/1.1 Cache-Control的理解
這是網(wǎng)頁(yè)代碼,還是IIS 代碼
--marmoglass
3.?re: How To Avoid javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated Problem Using Apache HttpClient
評(píng)論內(nèi)容較長(zhǎng),點(diǎn)擊標(biāo)題查看
--dashi99
4.?re: How To Avoid javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated Problem Using Apache HttpClient
評(píng)論內(nèi)容較長(zhǎng),點(diǎn)擊標(biāo)題查看
--shigangxing
5.?re: Part 12: java.util.concurrent : SingleThreadPool Example
評(píng)論內(nèi)容較長(zhǎng),點(diǎn)擊標(biāo)題查看
--NotNolyJava
閱讀排行榜
1.?HTTP/1.1 Cache-Control的理解(10101)
2.?MYSQL 連接數(shù)據(jù)庫(kù)命令收藏(8622)
3.?什么是RFC?(6617)
4.?can not be represented as java.sql.Timestamp(5955)
5.?How To Avoid javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated Problem Using Apache HttpClient(3649)
評(píng)論排行榜
1.?Java應(yīng)用基礎(chǔ):網(wǎng)友精選25個(gè)Java試題分享(18)
2.?踏實(shí)與成功(11)
3.?Eclipse中10個(gè)比較有用的快捷鍵組合(轉(zhuǎn))(7)
4.?摘:一個(gè)Java程序員應(yīng)該掌握的10項(xiàng)技能(6)
5.?Java獲取客戶端真實(shí)IP地址的兩種方法(5)
ant 腳本
<?
xml version="1.0" encoding="UTF-8"
?>
<
project
name
="Test"
default
="run"
basedir
="."
>
<
target
name
="clean"
>
<
delete
dir
="${basedir}/build"
/>
</
target
>
<
target
name
="compile"
depends
="clean"
>
<
mkdir
dir
="${basedir}/build/classes/com/fmr/java"
/>
<
javac
srcdir
="${basedir}/src/com/fmr/java"
destdir
="${basedir}/build/classes/com/fmr/java"
/>
</
target
>
<
target
name
="run"
depends
="compile"
>
<
java
classname
="com.fmr.java.TestSystemGetProperty"
>
<
classpath
>
<
pathelement
path
="${basedir}/build/classes/com/fmr/java"
/>
</
classpath
>
</
java
>
</
target
>
</
project
>
web application
<?
xml version="1.0" encoding="UTF-8"
?>
<
project
name
="AntTest"
default
="war"
basedir
="."
>
<
property
name
="classes"
value
="${basedir}/build/classes"
/>
<
property
name
="build"
value
="${basedir}/build"
/>
<
property
name
="lib"
value
="${basedir}/WebContent/WEB-INF/lib"
/>
<!--
刪除build 路徑
-->
<
target
name
="clean"
>
<
delete
dir
="${build}"
/>
</
target
>
<!--
建立build/classes 路徑,并編譯class 文件到build/classes 路徑下
-->
<
target
name
="compile"
depends
="clean"
>
<
mkdir
dir
="${classes}"
/>
<
javac
srcdir
="${basedir}/src"
destdir
="${classes}"
/>
</
target
>
<!--
打war 包
-->
<
target
name
="war"
depends
="compile"
>
<
war
destfile
="${build}/AntTest.war"
webxml
="${basedir}/WebContent/WEB-INF/web.xml"
>
<!--
拷貝WebRoot 下除了WEB-INF 和META-INF 的兩個(gè)文件夾
-->
<
fileset
dir
="${basedir}/WebContent"
includes
="**/*.jsp"
/>
<!--
拷貝lib 目錄下的jar 包
-->
<
lib
dir
="${lib}"
/>
<!--
拷貝build/classes 下的class 文件
-->
<
classes
dir
="${classes}"
/>
</
war
>
</
target
>
</
project
>
posted on 2011-08-12 13:52
ゞ沉默是金ゞ
閱讀(218)
評(píng)論(0)
編輯
收藏
新用戶注冊(cè)
刷新評(píng)論列表
只有注冊(cè)用戶
登錄
后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
Copyright ©2025 ゞ沉默是金ゞ Powered By
博客園
模板提供:
滬江博客
主站蜘蛛池模板:
沛县
|
永定县
|
江阴市
|
凤山市
|
江都市
|
仁寿县
|
屯留县
|
南皮县
|
博白县
|
达日县
|
石景山区
|
无为县
|
荣成市
|
仪陇县
|
大英县
|
京山县
|
古丈县
|
伊川县
|
莱州市
|
徐州市
|
SHOW
|
永胜县
|
古丈县
|
昌乐县
|
奎屯市
|
梓潼县
|
沾化县
|
黄浦区
|
常州市
|
丰顺县
|
普陀区
|
汉寿县
|
柳林县
|
广德县
|
南充市
|
都兰县
|
汉沽区
|
博客
|
尤溪县
|
丹阳市
|
永春县
|