#
摘要: 1、通过控制台的ActiveMQ创建如下JMS准备环境:
Type Name Deployed As State Actions
Connection&n...
阅读全文
摘要: 1、通过控制台创建相应的数据库,PICTURES表以及数据库连接池:
其中表的创建语句如下:
create table pictures(name varchar(32) not null primary key, pic blob(16M));
更多具体内容请参考:http://cwiki.apach...
阅读全文
摘要: Geronimo是APACHE出品的一个JEE应用服务器,支持JMS,JDBC,EJB等,下面是我的试用:
接口类:
package ejb;
import java.math.BigDecimal;
import javax.ejb.Remote;
@Remote
public interface Co...
阅读全文
摘要: 下面是关于DynaBean的一个简单实现:
1、属性类:
package test;
public class MyDynaProp {
private String name;
private Class<?&g...
阅读全文
摘要: Commons BeanUtil的介绍(抄录手册的说明):
The Bean Introspection Utilities component of the Apache Commons subproject offers low-level utility c...
阅读全文