
Java
文章平均质量分 81
iteye_10235
这个作者很懒,什么都没留下…
展开
-
对Java Generic相关知识的总结
对于如 List<E> 、 List< String > 、 List ,其中 List<E> 称为 parameterized type , E 称为 (formal) type parameter , String 称为 actual type argument , List 称为 raw type 。 Generic 的逻辑意义 原有 java 的类型...2006-12-13 19:06:00 · 206 阅读 · 0 评论 -
20100803 (jaas study)
JAAS authentication is performed in a pluggable fashion. This permits applications to remain independent from underlying authentication technologies. New or updated authentication technologies can be ...原创 2010-08-03 07:26:08 · 162 阅读 · 0 评论 -
20100723 (jpa study)
Each EntityManager instance is associated with a persistence context. A persistence context defines the scope under which particular entity instances are created, persisted, and removed.To obtain an...原创 2010-07-23 10:50:22 · 144 阅读 · 0 评论 -
20100723 (JAX-WS study)
The starting point for developing a JAX-WS web service is a Java class annotated with the javax.jws.WebService annotation. The @WebService annotation defines the class as a web service endpoint.A se...原创 2010-07-23 10:49:08 · 146 阅读 · 0 评论 -
20100723 (ejb study)
A session bean is similar to an interactive session. A session bean is not shared; it can have only one client, in the same way that an interactive session can have only one user. Like an interactive ...原创 2010-07-23 10:48:10 · 134 阅读 · 0 评论 -
RMI Summary
UnicastRemoteObject.exportObject expose a remote object at given ip and portLocateRegistry.getRegistry.bind register a remote object to registry, note that registrty is also a remote object, and the...2009-08-14 09:49:30 · 118 阅读 · 0 评论 -
Summary for JTA
JTA is useful not only for different database, but also for different connection to the same database. Transaction manager manage Transaction by begin / suspend / getTransaction / setTransactionTime...2009-01-06 17:06:00 · 96 阅读 · 0 评论 -
对javax.swing.undo包的总结
/* UndoableEdit and AbstractUndoableEdit */ AbstractUndoableEdit edit = new AbstractUndoableEdit(); // methods fall into 3 categories // 1.undoable operations // if the alive field is false,...2006-12-14 18:36:00 · 195 阅读 · 0 评论 -
对java 5除generic外的new features的总结
The for-each loop for (type_name variable_name : [instance of Iterable<T>] or [array]) {} 跟 .net 的 foreach 不同的是, Iterable 中的 type parameter 或 array 中的 element type 必须是 for 中使用的 type 或者其子类。 以下...2006-12-14 12:19:00 · 118 阅读 · 0 评论 -
2010 (gwt study)
In the module XML file, you specify your application's entry point class. In order to compile, a GWT module must specify an entry point. If a GWT module has no entry point, then it can only be inherit...原创 2010-08-03 07:29:35 · 186 阅读 · 0 评论