Kava Pava Gava Tava Nava Zava Java

everything about Java
随笔 - 15, 文章 - 0, 评论 - 1, 引用 - 0
数据加载中……

12 2009 档案

Google Guice 用户手册之 阅读笔记
     摘要: Google Guice 是一个类似 Spring 那样的条件注入 (IoC)库。与Spring 不同的是,Guice轻巧,不用XML。Guice 的配置模块就是 Java 类,因此可以得到编译器的支持和检查。本文是阅读 Guice 手册后的总结。  阅读全文

posted @ 2009-12-30 18:55 bing 阅读(2175) | 评论 (1)  编辑

Exploring Vaadin (6) - summary of several classes
     摘要: Something about:
Abstract Class PropertyFormatter
Abstract Class AbstractSelect
Interface FormFieldFactory
Abstract Class AbstractField  阅读全文

posted @ 2009-12-30 14:05 bing 阅读(626) | 评论 (0)  编辑

Exploring Vaadin (5) 阅读 com.vaadin.data.util.BeanItem 源代码
     摘要: 如题,阅读 com.vaadin.data.util.BeanItem 源代码的笔记  阅读全文

posted @ 2009-12-23 18:10 bing 阅读(345) | 评论 (0)  编辑

Exploring Vaadin (4) 阅读 com.vaadin.data.util.MethodProperty 源代码
     摘要: 阅读 com.vaadin.data.util.MethodProperty 源代码的笔记。阅读 MethodProperty 的目的是因为这个类是 Property,同时处理 Bean 的属性。本以为可能会牵扯到 Vaadin 处理类型转换的地方,可以了解一下 Vaadin 是如何操作的。结果发现错了。应该看看 com.vaadin.data.util.PropertyFormatter ,才是用来进行类型转换的。  阅读全文

posted @ 2009-12-23 17:35 bing 阅读(390) | 评论 (0)  编辑

Exploring Vaadin (3) 阅读 com.vaadin.ui.Form 源代码
     摘要: 阅读 com.vaadin.ui.Form 源代码的笔记  阅读全文

posted @ 2009-12-23 16:10 bing 阅读(722) | 评论 (0)  编辑

Exploring Vaadin (2) - Vaadin + Hibernate discussions on Internet
     摘要: Study of discussions on Internet about Vaadin + Hibernate  阅读全文

posted @ 2009-12-16 15:52 bing 阅读(2200) | 评论 (0)  编辑

总结 Hibernate 的 Optimistic Concurrency Control
     摘要: 带有版本标记的 Optimistic Concurency Control 是唯一既能提供高度并发,又能提供可扩展性的解决方案。就是说,很多人可以一起对一些数据同时进行操作,而这些操作又尽量不会造成互相冲突。Hibernate Reference 第11章11.3 讲述 Hibernate 进行 Optimistic Concurrency Control 的方法。本文是我对该小节阅读后的总结和理解。

  阅读全文

posted @ 2009-12-16 12:27 bing 阅读(1587) | 评论 (0)  编辑

Exploring Vaadin (1) - Data
     摘要: This article examines com.vaadin.data pacakge - the data source model for vaadin - and provide a summary. It also examine the relationship between data source and some UI classes.
  阅读全文

posted @ 2009-12-11 18:35 bing 阅读(974) | 评论 (0)  编辑

Step by step, using hibernate hbm2ddl to generate schema from annotation
     摘要: Run hibernate tools "hbm2ddl" to generate schema DDL into "schema.sql" from annotated entities. Step by Step!  阅读全文

posted @ 2009-12-09 17:45 bing 阅读(2077) | 评论 (0)  编辑

Set oracle.jdbc.V8Compatible=true when using higher version JDBC driver to access 8i databases, or strange things will happen
     摘要: You shall set oracle.jdbc.V8Compatible=true when using higher version JDBC driver to access 8i databases, or strange things will happen.  阅读全文

posted @ 2009-12-09 15:04 bing 阅读(4008) | 评论 (0)  编辑