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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T22:16:43+00:00 2026-05-14T22:16:43+00:00

For some of HTTP requests from clients, there’re very complex business logic in server

  • 0

For some of HTTP requests from clients, there’re very complex business logic in server side.
Some of these business logics doesn’t require to response to the client immediately, like sending a email to somebody. Can I put those tasks in an asynchronous method,so I only need to ensure that they had been executed,I don’t need to wait all tasks complete to respond to the user.

Updated: Some people asked about the framework I am using. I am using Struts2 + Spring.

  • 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-14T22:16:44+00:00Added an answer on May 14, 2026 at 10:16 pm

    I don’t know what framework you’re using, but, in basic Java, you can just create a new Thread:

    interface MyTaskCallback {
        void myTaskCallback();
    }
    class MyTask implements Runnable {  
        MyTaskCallback callback;
        Thread me;
        public MyTask(MyTaskCallback callback) {
            this.callback = callback;
            this.me = new Thread();
        }
    
        public void start() {
            this.me = new Thread(this);
            this.me.start();
        }
    
        public void stop() {
            try {
                this.me.join(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    
        public void run() {
            // Calls here will not block the other threads
            sendEmailRequest();
            callback.myTaskCallback();
        }
    }
    
    class Main implements MyTaskCallback {
        public void foo() {
            MyTask m = new MyTask(this);
            m.start();
        }
    
        public void myTaskCallback() {
            // called when MyTask completes
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working with rails 3.2 and want to request some services from http://api.de-captcher.com/
I got some sample code from the net here: http://www.javadb.com/sending-a-post-request-with-parameters-from-a-java-class That works fine. It
I use some HTTP Handlers from my Web Forms days forms, to for example
I'm working on a solution to redirect http requests from my browser to another
I am working on linux. I have a HTTP client which requests some data
I'm working on a RESTish server project that responds to HTTP requests in a
I would like to add some data to the body of a http request
I'm using curl to make php send an http request to some website somewhere
Could you tell me some http-streaming tutorial or example ( used also by Gmail
Question text/background and finds My browser sends some HTTP header (e.g. referer) to my

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.