Does Tomcat 7 support MDB listeners?
Does Tomcat 7 has the EJB implementation to allow cr开发者_如何学Ceate queues and deploy MDB listeners?
No, it doesn't. It only implements the JSP/Servlet API out the box (JSR-245 and JSR-315).
You can however use OpenEJB to enrich Tomcat with (limited) EJB support, including MDBs.
No, Tomcat is a servlet container, not a complete Java EE server, it has no EJB support on board.
There's a rich choice of open/free full Java EE servers available, check out Glassfish, JBoss, Geronimo or Jonas. And I'm probably forgetting several others.
精彩评论