- 浏览: 20696 次
- 性别:
- 来自: 佛山
最近访客 更多访客>>
文章列表
1.配置
在calinda.bat中加入这样的一段:
set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.port=1090 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file="%CATALINA_BA ...
- 2008-03-06 17:54
- 浏览 1384
- 评论(0)
开始研究Maven,特记下此point!
相关资源:http://www.sonatype.com/book/index.html
- 2008-01-30 16:17
- 浏览 1511
- 评论(0)
Batch update returned unexpected row count from update [0];
初步估计,*.hbm.xml配置中所对应该的column有问题。
- 2007-10-10 11:31
- 浏览 3928
- 评论(1)
参考:http://apr.apache.org/versioning.html
版本号由三个部分的整数组成:主版本号(MAJOR)、副版本号(MINOR)、补丁版本号(PATCH)。
主要的含义是主版本号(MAJOR)是不兼容的,API大规模升级
副版本号(MINOR)在源文件和可执行版和老版本保持兼容
补丁版本号(PATCH)则意味着向前和向后的完全兼容”
- 2007-05-24 15:52
- 浏览 1107
- 评论(0)
java 代码 List<string> wordList = </string>new LinkedList<string>(); </string> // Assign some words for (int i=0; i wordList.add("word " + (i+1) + ": " '" + args[i] + "'"); } // Remove all words with "1&qu ...
- 2007-05-18 11:03
- 浏览 1208
- 评论(0)
今天在 developerWorks 中国看到一篇文章,用 for/in 在 Java 5.0 中增强循环,看到这样的一段:
这是资深电脑程序员都知道的一条最基本的原理:因为 更短 意味着 打字更少,所以更短自然也就更好。这个哲学造就了 vi 这样的 IDE,在这类 IDE 中,像 :wq! 和 28G 这样的命令拥有丰富的含义。这个哲学还导致一些最神秘的代码,比如说,变量 ar 代表 Agile Runner(也可能是 Argyle,或者 Atomic Reactor 等等,总之,您明白就好)。
有些时候,在努力实现短小的时候,程序员会将明确性抛到脑后。也就是说,过于短小和过于繁冗的代码都会 ...
- 2007-05-17 10:27
- 浏览 898
- 评论(0)
JavaScript 连接
1.prototype 官网
http://
2.dwr 官网
3.downpour的prototype使用手册
http://www.demo2do.com/prototype/reference/
- 2007-05-12 12:35
- 浏览 1248
- 评论(0)
AJAX 应用实例
1.http://www.protopage.com
http://www.protopage.com
2.http://start.gotapi.com/
http://start.gotapi.com/
- 2007-05-12 12:35
- 浏览 875
- 评论(0)
近日在处理替换String中的字符串的时候,碰到一个问题,代码如下:
String normals= "10+14+16+19+20";
normals = normals.replaceAll("/+", ":");
System.out.println(normals);
//输出的结果是:10+14+16+19+20
normals = normals.replace('+', ':');
System.out.pri ...
- 2007-05-11 16:59
- 浏览 4987
- 评论(0)