当前位置: 技术问答>java相关
有关消息驱动bean的问题!!!!高手救我!!!!
来源: 互联网 发布时间:2015-06-05
本文导语: 消息驱动bean类到底应该是实现MessageDrivenBean接口,还是应该同时实现MessageDrivenBean和MessageListener这两个接口? 我在不同参考书上看到了不同的实现,这到底是怎么回事?我糊涂了。 | 应该同时...
消息驱动bean类到底应该是实现MessageDrivenBean接口,还是应该同时实现MessageDrivenBean和MessageListener这两个接口?
我在不同参考书上看到了不同的实现,这到底是怎么回事?我糊涂了。
我在不同参考书上看到了不同的实现,这到底是怎么回事?我糊涂了。
|
应该同时实现MessageDrivenBean和MessageListener这两个接口.下面是对消息驱动bean的要求:
It implements the MessageDrivenBean and MessageListener interfaces
The class is defined as public.
The class cannot be defined as abstract or final.
It implements one onMessage method.
It implements one ejbCreate method and one ejbRemove method.
It contains a public constructor with no arguments.
It must not define the finalize method.
It implements the MessageDrivenBean and MessageListener interfaces
The class is defined as public.
The class cannot be defined as abstract or final.
It implements one onMessage method.
It implements one ejbCreate method and one ejbRemove method.
It contains a public constructor with no arguments.
It must not define the finalize method.
|
当然应该是两个接口都实现娄!你看看JMS的文档就知道为什么了!哈哈!