Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6989103
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:10:06+00:00 2026-05-27T19:10:06+00:00

I have a few Servlets which call remote EJB session to manage user’s requests.

  • 0

I have a few Servlets which call remote EJB session to manage user’s requests. At a first time I created a new manager in each method this way:

ManagerAdminRemote managerAdmin;
Context jndiContext = new javax.naming.InitialContext();
Object ref = jndiContext.lookup("ManagerAdmin/remote");
managerAdmin = (ManagerAdminRemote) PortableRemoteObject.narrow(ref, ManagerAdminRemote.class);

To avoid this repetition, I implemented the init method like this:

public void init(ServletConfig config) throws ServletException {
    super.init(config);
    try {
        Context jndiContext = new javax.naming.InitialContext();
        Object ref = jndiContext.lookup("ManagerAdmin/remote");
        managerAdmin = (ManagerAdminRemote) PortableRemoteObject.narrow(ref, ManagerAdminRemote.class);
    } catch (NamingException e) {
        e.printStackTrace();
    }
}

With managerAdmin declared as class attribute.
Session Bean ManagerAdmin is stateless.

I’m using JBoss 5 and I saw that init() is called the first time the Servlet is called. But I also noticed that all the users share the same objects declared as class attribute. So this way, for instance, different users will share the same managerAdmin.

For now I didn’t encounter any problem, but I’m asking: could this sharing bring problems of any kind? Delays? Or, since managers are stateless, is it fine?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:10:07+00:00Added an answer on May 27, 2026 at 7:10 pm

    You should be fine using stateless services as long as the references to those services are instance variables. Alternatively you could create a getManagerAdmin() method that handles the lookup for you and thus you wouldn’t have to repeat the lookup code in each method.

    If you can use Java EE 6 and thus EJB 3.1 you might want to let the container inject the services into the servlet. Note that this only works for local lookups in the same class loading context (normally the same application but it might be the same JVM if the applications are not isolated by the web/application server).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have few different applications among which I'd like to share a C# enum.
We have few components like libraries dlls When initially created I ran the following
I have few Question for which I am not able to get a proper
I have a requirement in which i need to process few data to generate
I have a spring controller (MyController) which servers data as json. With a few
Situation I have a few single-responsibility Servlets that take a request, do their job,
I have to use a few servlets in my Web application. The servlets perform
I have few asynchronous tasks running and I need to wait until at least
I have few question in this regard When you create an internet page, does
I have few nested DIVs at page. I want to add event only for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.