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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:19:25+00:00 2026-06-09T22:19:25+00:00

I have a servlet that gets a ID as parameter and returns three values.

  • 0

I have a servlet that gets a ID as parameter and returns three values. Since the servlet code is large ill just give the necessary details.

getdetails.jsp

Inputs : ID //as a query string
Returns: ID, average, count // As a JSON string

From the client side am making two asynchronous javascript requests one by one (second immediately after 1st request) with different IDs. The responses from the server are as follows:

Responses:

For ID1 : ID1, average1, count1
For ID2 : ID1, average2, count2

For ID2 it gives correct average and count but returns the ID1 (ID of 1st request).

When I put the same code in getdetails.jsp in getdetails1.jsp and make each request to each servlet, I get correct results.

Responses:

For ID1 : ID1, average1, count1
For ID2 : ID2, average2, count2

What may be the reason for this and how to correct this?

EDIT:
code of getdetails.jsp:

<%!
String ID;
JsonObject details = new JsonObject();  //using Google JSON Lib
%>
<%
ID=request.getParameter("id");
details.addProperty("ID",ID);
...   //accessing corresponding average and count
details.addProperty("average",average);
details.addProperty("count",count);
out.println(details);
%>
  • 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-06-09T22:19:27+00:00Added an answer on June 9, 2026 at 10:19 pm

    The problem is what @thinksteep suggested. JSP code is translated and compiled into a Servlet. Using the JSP declaration <%! %> creates instance variables that aren’t thread-safe. You should declare the variables so that they are created new for each request by removing them from the <%! %> section and declaring them in the <% %> section.

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

Sidebar

Related Questions

I have a web servlet that returns a json which is stored in my
I have a servlet that connects to the mysql database, the resultset gets some
i have to design a localhost application that one code at other project returns
I have a servlet that does some business login and then redirects to a
I have a servlet that takes a couple of minutes to process and return
The scenario: I have a servlet that receives xmls, parses them (using JAXB), persists
Under JBoss 4.0.1SP1, I have a servlet that makes multiple, concurrent calls to web
I have a Java servlet that receives data from an upstream system via a
I have this java servlet that grabs information from a form, I need to
I have a Filter Servlet that filters request from a Servlet. I do not

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.