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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T01:47:00+00:00 2026-06-06T01:47:00+00:00

What is the best way to implement some kind of progress indicator in Play?

  • 0

What is the best way to implement some kind of progress indicator in Play?

I have a simple import page where the user can upload a csv file. The server is then doing some lenghty processing until the import is complete. I would like to redirect the user to a separate page after uploading and give him some continuing feedback on this page á la “150 of 856 datasets imported”.

The upload action triggers a controller method which could start the time consuming task in its own thread, but how do I get the status of the job with an ajax call from another page (since play doesn’t have any kind of state between requests)?

  • 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-06T01:47:01+00:00Added an answer on June 6, 2026 at 1:47 am

    What you are likely to do is create a Job from your controller. In fact if you read the Play documentation, you are expressly encouraged to perform long running processing in Jobs so that they do not hog the HTTP request threads.

    So, your job is running, by processing your CSV file. The next step is to record when each dataset has been processed. So, assume you pass your Job a reference, like a uid or some unique number, which you pass back to your client. You then simply need to record (probably in a database if you want to conform to statelessness and scale easily) each increment of your number of datasets processed against your unique id.

    for example

    @Entity
    public class DatasetProgress extends Model {
    
        public Long uid;
        public Long datasetsDone;
        public Long datasetsTotal;
    
    }
    

    You can then create a controller action that returns the DatasetProgress object based on your uid, which you can use to show a progress bar.

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

Sidebar

Related Questions

I have some questions about how is the best way to implement DDD principles
what is the best way to implement some action that should be executed each
Looking for some advice on the best way to implement localization along with client
What's the best way to implement a Hash that can be modified across multiple
What is the best way to implement simple pagination? Here is the code im
I am trying to implement some flow control in Play 2.0.3, kind of a
What is the best way to implement a horizontal navbar in GWT? Using a
What is the best way to implement a three item hashMap? For example, I
What's the best way to implement keywords as optional flags to a function? I
What is he best way to implement Watermark functionality for a System.Windows.Forms.TextBox in .Net

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.