Korben
Korben

Reputation: 734

Example of EJB 3x project on Intellij Idea?

I am a Java user with recent migration to IntelliJ Idea and I am new to EJB, I wonder if there is any example of EJB 3.x example with IntelliJ Idea and JBoss 6? I did not found much material myself.

Thanks very much

Upvotes: 2

Views: 7282

Answers (1)

David Blevins
David Blevins

Reputation: 19378

There are a variety of EJB examples here:

All of them have unit tests and can be run in Intellij (my preferred IDE by far) by either:

  • importing the Maven pom.xml as a new module or project
  • using Maven mvn idea:idea to generate the Intellij project

Here's one example with an accompanying video that shows it run in Intellij.

No audio in the video, point is to show it working. Seeing is believing as they say :)

It's not JBoss, but will teach you EJB and the knowledge is transferable.

Upvotes: 2

Related Questions