次のことを行う必要があります。
- ユーザーがログインします。
- ようこそ画面にリダイレクトされました。
- 多くのレコードが読み込まれている間、ようこそ画面を見ます。
- 作業画面にリダイレクトされます。
私は Action クラスで次のようなことをする方法を探しています:
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";
}
}
それは間違ったアプローチかもしれません。もしそうなら教えてください。私はStrutsの初心者です。