导航

2011年4月21日

摘要: I am surprised because i have two ejb on two deifferent server which are communicating together via remote interface and i don't need to use javax.rmi.PortableRemoteObject.narrow to cast the stub afte... 阅读全文

posted @ 2011-04-21 22:48 FryFish 阅读(571) 评论(0) 推荐(0) 编辑

摘要: 前言:在上篇文章《Java Annotation入门》中概要性的介绍了Annotation的定义、使用,范围涵盖较广,但是深度不够。所以作者在《Java Annotation入门》后,继续整理了Annotation的概念和知识点,与喜欢research的朋友们共享。阅读提示:文中提到的程序成员或者程序元素是一个概念,指组成程序代码的单元:如类、方法、成员变量。 一、Annotation究竟是什么... 阅读全文

posted @ 2011-04-21 17:24 FryFish 阅读(160) 评论(0) 推荐(0) 编辑

摘要: 一、 Java 中定义了两类异常: 1) Checked exception: 这类异常都是Exception的子类 。异常的向上抛出机制进行处理,如果子类可能产生A异常,那么在父类中也必须throws A异常。可能导致的问题:代码效率低,耦合度过高。C#中就没有使用这种异常机制。 2) Unchecked exception: 这类异常都是RuntimeException的子类,虽然... 阅读全文

posted @ 2011-04-21 17:04 FryFish 阅读(206) 评论(0) 推荐(0) 编辑