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 49615
In Process

The Archive Base Latest Questions

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

I would like to know if there is some way to share a variable

  • 0

I would like to know if there is some way to share a variable or an object between two or more Servlets, I mean some ‘standard’ way. I suppose that this is not a good practice but is a easier way to build a prototype.

I don’t know if it depends on the technologies used, but I’ll use Tomcat 5.5


I want to share a Vector of objects of a simple class (just public attributes, strings, ints, etc). My intention is to have a static data like in a DB, obviously it will be lost when the Tomcat is stopped. (it’s just for Testing)

  • 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. 2026-05-10T16:27:53+00:00Added an answer on May 10, 2026 at 4:27 pm

    I think what you’re looking for here is request, session or application data.

    In a servlet you can add an object as an attribute to the request object, session object or servlet context object:

    protected void doGet(HttpServletRequest request, HttpServletResponse response) {     String shared = 'shared';     request.setAttribute('sharedId', shared); // add to request     request.getSession().setAttribute('sharedId', shared); // add to session     this.getServletConfig().getServletContext().setAttribute('sharedId', shared); // add to application context     request.getRequestDispatcher('/URLofOtherServlet').forward(request, response); } 

    If you put it in the request object it will be available to the servlet that is forwarded to until the request is finished:

    request.getAttribute('sharedId'); 

    If you put it in the session it will be available to all the servlets going forward but the value will be tied to the user:

    request.getSession().getAttribute('sharedId'); 

    Until the session expires based on inactivity from the user.

    Is reset by you:

    request.getSession().invalidate(); 

    Or one servlet removes it from scope:

    request.getSession().removeAttribute('sharedId'); 

    If you put it in the servlet context it will be available while the application is running:

    this.getServletConfig().getServletContext().getAttribute('sharedId'); 

    Until you remove it:

    this.getServletConfig().getServletContext().removeAttribute('sharedId'); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 85k
  • Answers 85k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I wonder if jQuery is using .getAttribute() - using .src… May 11, 2026 at 5:14 pm
  • Editorial Team
    Editorial Team added an answer I actually found the problem. I am using an URLRewriter… May 11, 2026 at 5:14 pm
  • Editorial Team
    Editorial Team added an answer In fact I needed to create a DnsEndpointIdentity, as follows:… May 11, 2026 at 5:14 pm

Related Questions

I'm using the Composite Application Library 's event aggregator, and would like to create
I would like to work on a programming project in my spare time and
I have an unordered list of items, something like this, shortened for brevity: <div
I'm using StringBuffer in Java to concat strings together, like so: StringBuffer str =

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.