chip
chip

Reputation: 3279

reference for ejb jboss and eclipse development

is there a reference or book, maybe a tutorial that can get me started with ejb using the technologies that I have mentioned above?

thank you

Upvotes: 1

Views: 159

Answers (1)

Piotr Nowicki
Piotr Nowicki

Reputation: 18174

You can take a look at the JBoss Tools if you're interested in developing Java EE applications in Eclipse.

If you already know EJB (and if you don't there is quite good Enterprise JavaBeans 3.1 book) you know you can develop your EJB's as plain POJO's just with annotations. No need for fancy plugins here.

You would, however, need a plugin to easily deploy your application to the server. In this case, take a look at these JBoss Tools and this topic.

Upvotes: 1

Related Questions