dds
dds

Reputation: 2415

WildFly and old EJB2 code

We have a project with plenty of legacy EJB2 stuff along with new code written in EJB3. So we want to migrate it from JBoss AS 7 to WildFly.

Does WildFly support EJB2?

I have tried to find info about this, but found only info from June 10 2013 that

"Support ... has been made optional in this release and their description is moved to a separate EJB Optional Features document"

Upvotes: 1

Views: 2693

Answers (1)

David M. Lloyd
David M. Lloyd

Reputation: 2825

EJB 2 is a required part of Java EE 7, thus WildFly definitely supports EJB 2, with the exception of (now-optional) container-managed persistence (also known as "entity beans") support.

Upvotes: 5

Related Questions