• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

@EJB injection question

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello again.

I recently viewed duke' bank application which was developed using @EJB annotation.
Also, As i know @EJB injection can be done only in main class.

What if i don't want to write all the bussiness logic and components , events discription/ initializations in one class?

I mean, i want to separate them into 3 different classes like here:

http://java.sun.com/developer/technicalArticles/J2EE/appclient/

graphics.java , dataHandler, eventHandler and so on..

and not to do like here:



...



QUESTION : how i can call remote session bean methods with @EJB from class different from main if it is not allowed? I tryed to make references to main class but failed with NullPointerException... ))


Should i use EJB 2.1 insted of 3.0 then?i am really confused.
 
Sheriff
Posts: 9707
43
Android Google Web Toolkit Hibernate IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use a JNDI lookup if injection isn't working...
 
Pay attention! Tiny ad!
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic