I need to do the following:
- User logs in.
 - Redirected to welcome screen.
 - Looks at the welcome screen while lots of records are loaded.
 - Redirected to the working screen.
 
I am looking for a way to do in Action class something like this:
public class LinkAction extends ActionSupport implements SessionAware {
        @Autowired
        private ServiceDelegate myService;
    public String welcome()
        {
            new Runnable() {
                @Override
                public void run() {
                    myService.getLoadsOfData();
                    //redirect to the next action
                }
            }.run();
            // this is where the user 
            // goes to look at the welcome screen        
            return "welcome";
        }
    }
May be it's a wrong approach, please tell if so, I am new at Struts.