gembin

OSGi, Eclipse Equinox, ECF, Virgo, Gemini, Apache Felix, Karaf, Aires, Camel, Eclipse RCP

HBase, Hadoop, ZooKeeper, Cassandra

Flex4, AS3, Swiz framework, GraniteDS, BlazeDS etc.

There is nothing that software can't fix. Unfortunately, there is also nothing that software can't completely fuck up. That gap is called talent.

About Me

 

JavaEE

Thread-safety when injecting JPA EntityManager

posted @ 2013-02-04 10:49 gembin 阅读(755) | 评论 (0)  编辑

WebLogic's Classloading Framework

posted @ 2011-08-16 16:49 gembin 阅读(540) | 评论 (0)  编辑

Common Problems with Authentication Provider Configuration
     摘要: Common Problems with Authentication Provider Configuration, keep it for reference!  阅读全文

posted @ 2010-11-17 17:35 gembin 阅读(664) | 评论 (0)  编辑

Enterprise Java Community: Modularizing Existing Web Applications With OSGi: A Migration Path to OSGi [zhuan]
     摘要: A Migration Path to OSGi  阅读全文

posted @ 2009-04-25 02:13 gembin 阅读(1129) | 评论 (0)  编辑

Higgins 1.0: Identity Management Solutions from the Eclipse Foundation
     摘要: Identity Management Solutions from the Eclipse Foundation  阅读全文

posted @ 2009-03-08 23:55 gembin 阅读(453) | 评论 (0)  编辑

JSP使用URLRewirte实现url地址伪静态化(转)
     摘要: URLRewirte.............  阅读全文

posted @ 2008-05-27 00:44 gembin 阅读(1287) | 评论 (0)  编辑

filter过滤器
     摘要: 从J2EE1.3开始,Servlet2.3规范中加入了对过滤器的支持。过滤器能够对目标资源的请求和响应进行截取。过滤器的工作方式分为四种,下面让我们分别来看看这四种过滤器的工作方式...  阅读全文

posted @ 2008-05-27 00:42 gembin 阅读(1895) | 评论 (1)  编辑

Apache Common fileUpload API 详解
     摘要: Apache Common fileUpload API 详解  阅读全文

posted @ 2008-05-08 14:38 gembin 阅读(7318) | 评论 (1)  编辑

Core J2EE Pattern
     摘要: Core J2EE Pattern  阅读全文

posted @ 2008-05-01 00:30 gembin 阅读(511) | 评论 (0)  编辑

Job Scheduling in J2EE Applications
     摘要: Scheduling tasks in J2EE applications is a common need. There is more to job scheduling than running backups at 3 o'clock in the morning. Customer relationship management (CRM) applications, for example, need to contact customers periodically during the sales cycle. File transfer applications need to transmit and receives files on a regular basis, except on holidays. Administrative applications need to send reminder emails to notify employees and customers about important events. All these enter  阅读全文

posted @ 2008-04-30 19:29 gembin 阅读(548) | 评论 (0)  编辑

JPA 学习
     摘要: In the perfect world, your object model would map seamlessly to your database schema. Most organizations however, have database naming standards, requirements for how relationships are modeled and columns that all tables must have.  阅读全文

posted @ 2008-04-30 19:19 gembin 阅读(2471) | 评论 (1)  编辑

HttpClient 学习整理[zhuan]
     摘要: HTTP 协议可能是现在 Internet 上使用得最多、最重要的协议了,越来越多的 Java 应用程序需要直接通过 HTTP 协议来访问网络资源。虽然在 JDK 的 java.net 包中已经提供了访问 HTTP 协议的基本功能,但是对于大部分应用程序来说,JDK 库本身提供的功能还不够丰富和灵活。HttpClient 是 Apache Jakarta Common 下的子项目,用来提供高效的、最新的、功能丰富的支持 HTTP 协议的客户端编程工具包,并且它支持 HTTP 协议最新的版本和建议。HttpClient 已经应用在很多的项目中,比如 Apache Jakarta 上很著名的另外两个开源项目 Cactus 和 HTMLUnit 都使用了 HttpClient,更多使用 HttpClient 的应用可以参见http://wiki.apache.org/jakarta-httpclient/HttpClientPowered。HttpClient 项目非常活跃,使用的人还是非常多的。目前 HttpClient 版本是在 2005.10.11 发布的 3.0 RC4 。  阅读全文

posted @ 2008-03-26 18:38 gembin 阅读(2187) | 评论 (0)  编辑

JPA查询
     摘要: 1.查询所有信息
Query q = em.createQuery("select u from Userinfo u");
List list =q.getResultList();
如果查询结果是多个,应该使用Query接口的getResultList方法,如果查询结果只有一个,可以使用Query接口的getSingleResult方法。
命名查询: ......  阅读全文

posted @ 2008-03-20 01:50 gembin 阅读(2552) | 评论 (0)  编辑

Web 2.0 到 web 4.0 :未来的语义网络和网络操作系统(WebOS)
     摘要: Radar Networks 公司的 Nova Spivack 绘制了一份未来 25 年的网络进化图。 Nova 没有明确指出 Web 4.0 具体的来临日期和所需技术,但每个阶段的发展以 10 年为期限是真实而可信的。同时,我们也不必拘泥于命名的规则 – 1.0、2.0 等等。互联网下一次显著进化将使其成为一个包含语义网络的平台,这一理念是合情合理的。  阅读全文

posted @ 2008-03-11 13:41 gembin 阅读(617) | 评论 (0)  编辑

基于Ajax的web桌面操作系统AjaxWindows
     摘要: Linspire的创始人建立的AjaxWindows已正式发布,又一个基于Ajax的web桌面操作系统面世。

AjaxWindows在浏览器里完全模仿了Windows环境,甚至还提供了一个同步化工具,可以在服务器上把用户的电脑数据建立一个镜像,这意味著你可以在任何地方连接自己的桌面(这项技术还不成熟,有人反映同步工具不能正常工作)。
  阅读全文

posted @ 2008-03-11 13:38 gembin 阅读(1109) | 评论 (3)  编辑

85个专业ajax解决方案(图)
     摘要: 85个专业ajax解决方案(图)  阅读全文

posted @ 2008-03-11 13:25 gembin 阅读(1642) | 评论 (1)  编辑

导航

统计

常用链接

留言簿(6)

随笔分类(440)

随笔档案(378)

文章档案(6)

新闻档案(1)

相册

收藏夹(9)

Adobe

Android

AS3

Blog-Links

Build

Design Pattern

Eclipse

Favorite Links

Flickr

Game Dev

HBase

Identity Management

IT resources

JEE

Language

OpenID

OSGi

SOA

Version Control

最新随笔

搜索

积分与排名

最新评论

阅读排行榜

评论排行榜

free counters