- 浏览: 88195 次
- 性别:
-
最新评论
-
alexgreenbar:
function User(name) { this.n ...
javascript里的函数调用模式 -
alexgreenbar:


VM arguments to start runtime workbench -
robbin:
我也是第一次知道say命令,确实不错,哈哈
Macbookpro 初印象 -
alexgreenbar:
jnn 写道 欢迎成为Mac用户,记着下次喝咖啡的时候带上拉一 ...
Macbookpro 初印象 -
alexgreenbar:
plstryagain 写道欢迎交流mac使用心得。另外,大侠 ...
Macbookpro 初印象
文章列表
http://www.eclipsezone.com/eclipse/forums/t99588.html
庄表伟 写道结对编程——最有效的相互监督机制
I don't think so, if you have chance to pair with some of the excellent engineers on the world, I dare to say you won't think like that.
Every engineer don't like boss, me too. But please don't make that kind of joke on XP practices. At least, pair programming improve code q ...
- 2007-08-14 13:29
- 浏览 983
- 评论(1)
I wonder is there anybody follow TDD practice strictly in their development?
Some of TDD gurus said TDD will make you addict to that type of development, and you won't return to old type of development once you try TDD.
Could you share your thoughts here?
read this book again:
http://www.china-pub.com/computers/common/info.asp?id=19120
[url]http://www.amazon.com/exec/obidos/ASIN
/0131016490/qid=1097646507/sr=2-3/
ref=pd_ka_b_2_3/103-9945153-2808617[/url]
It's very weird to read: "Tests in TDD is different from unit tests"
For me, I think u ...
At end of project development, profile your application will become important, at least it's better to know the hot spots of your application, and think about improving it.
There exist many different commercial and open source profile tools for java, but in Eclipse area, TPTP seems the best choice ...
http://www.joelonsoftware.com/articles/fog0000000043.html
javastudy 写道编个删除程序不就行了吗if you install a Linux on same machine too, you can mount your NTFS from Linux, and use command below remove that big directory:
$rm -rf *
- 2007-08-08 14:34
- 浏览 890
- 评论(0)
Two ways we can use now:
1. use java listen to a port, let jdb connect to it
$java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y Demo
Listening for transport dt_socket at address: 33586
$jdb -attach 33586
2. use jdb listen to a port, let java connect to it
$jdb -listen 9090
$jav ...
sometimes, it need implement two interfaces, like:
public interface IAface {
public static final String A = "AFACE";
public int doSmile();
}
public interface IBface {
public static final String B = "BFACE";
public String doSmile();
}
usually, it can be done ...
从MOTTO(格言)杂志看到的,一针见血。
好人 : 有一颗善良的心
老好人 : 有一张善变的脸
one common solution for this like:
- this.getClass().getResources()
but this way force you have to put your resources into src directory of Eclipse, this won't work under situation: your plugin is a pure library plugin, i.e. it hasn't src directory at all and it's not a java project, which hasn't j ...
some history:
objectweb Celtix -> objectweb Celtix + codehaus Xfire -> Apache CeltiXire -> Apache CXF
- 2007-07-24 11:41
- 浏览 935
- 评论(0)
As we know, maven use repository to save project artifacts, but maven doesn’t do a well maintenance job on its repository, e.g. my local maven repository size has increased to 1.7G, but most of old version of artifacts inside my local maven repository won’t use by me forever.
My suggestion is: maven ...