vairam
vairam

Reputation: 471

What should be done for deploying EJB 2.1 in Jboss AS 6.0

What is the configuration one has to do for deploying EJB 2.1 in Jboss AS 6.0? Kindly refer to links, if there are any.

Upvotes: 1

Views: 2151

Answers (1)

Arjan Tijms
Arjan Tijms

Reputation: 38163

There should not be any explicit configuration needed. JBoss AS 6 officially only supports the Java EE web profile (which doesn't include EJB 2.1 at all), but in practice they have implemented the full stack and EJB 2.1 beans should just work.

That said, if at any way possible, try to avoid EJB 2.1. It's a bloated, nasty and heavy-weight technology that's literally from another era. For any new development EJB 3.1 or even 3.0 is highly recommended.

Upvotes: 1

Related Questions