在Struts2中加载long-运行初始化数据时如何避免WSOD(黑屏)?
How to avoid WSOD (blank screen) while loading long-running initialization data in Struts2?
我需要做以下事情:
- 用户登录。
- 重定向到欢迎屏幕。
- 加载大量记录时查看欢迎屏幕。
- 重定向到工作屏幕。
我正在寻找一种方法来执行 Action class 类似这样的事情:
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的新手。
正确的方法是 AleksandrM 在评论中已经建议的方法:打开页面,在调用 ajax 操作时显示一个指示器(为方便起见,假设使用 jQuery),然后呈现结果并删除指示器。这比你想象的要容易:
public class MainAction extends ActionSupport {
public String execute() {
return SUCCESS;
}
}
public class AjaxAction extends ActionSupport {
@Autowired
private ServiceDelegate myService;
private Stuff myStuff; // with getter
public String execute() {
myStuff = myService.loadLongStuff();
return SUCCESS;
}
}
您的 AJAX 操作可以是 return JSON 数据、JSP 片段或二进制数据流。选择您喜欢的方式。例如,如果您将 AjaxAction 的 SUCCESS 映射到 JSP 片段,则您的 JSP 片段将是:
ajaxSnippet.jsp
<%@ taglib prefix="s" uri="/WEB-INF/struts-tags.tld" %>
Stuff: <s:property value="myStuff" />
然后在您的 main.jsp 中显示 div 中的指标,您将用 AJAX 调用的结果覆盖:
main.jsp
<body>
<div id="main">
<img src="/images/mesmerizingProgressBar.gif" />
</div>
<script>
$(function(){ // onDocumentReady...
$.ajax({ // call ajax action...
type : 'GET',
url : '/ajaxAction.action',
success : function(data,textStatus,jqXHR){
// then render your result in "main" div,
// overwriting the loading GIF
$("#main").html(data);
},
error : function(jqXHR, textStatus, errorThrown){
$("#main").html("Error ! " + textStatus);
}
});
});
</script>
</body>
感谢您的 AJAX 想法。
然而,我正在寻找的答案实际上是 Struts 拦截器 "execAndWait"。
我决定在 AJAX 上使用它,因为我正在处理现有的应用程序并且所有 Struts 管道都已到位。
这是Struts guide on this
我需要做以下事情:
- 用户登录。
- 重定向到欢迎屏幕。
- 加载大量记录时查看欢迎屏幕。
- 重定向到工作屏幕。
我正在寻找一种方法来执行 Action class 类似这样的事情:
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的新手。
正确的方法是 AleksandrM 在评论中已经建议的方法:打开页面,在调用 ajax 操作时显示一个指示器(为方便起见,假设使用 jQuery),然后呈现结果并删除指示器。这比你想象的要容易:
public class MainAction extends ActionSupport {
public String execute() {
return SUCCESS;
}
}
public class AjaxAction extends ActionSupport {
@Autowired
private ServiceDelegate myService;
private Stuff myStuff; // with getter
public String execute() {
myStuff = myService.loadLongStuff();
return SUCCESS;
}
}
您的 AJAX 操作可以是 return JSON 数据、JSP 片段或二进制数据流。选择您喜欢的方式。例如,如果您将 AjaxAction 的 SUCCESS 映射到 JSP 片段,则您的 JSP 片段将是:
ajaxSnippet.jsp
<%@ taglib prefix="s" uri="/WEB-INF/struts-tags.tld" %>
Stuff: <s:property value="myStuff" />
然后在您的 main.jsp 中显示 div 中的指标,您将用 AJAX 调用的结果覆盖:
main.jsp
<body>
<div id="main">
<img src="/images/mesmerizingProgressBar.gif" />
</div>
<script>
$(function(){ // onDocumentReady...
$.ajax({ // call ajax action...
type : 'GET',
url : '/ajaxAction.action',
success : function(data,textStatus,jqXHR){
// then render your result in "main" div,
// overwriting the loading GIF
$("#main").html(data);
},
error : function(jqXHR, textStatus, errorThrown){
$("#main").html("Error ! " + textStatus);
}
});
});
</script>
</body>
感谢您的 AJAX 想法。
然而,我正在寻找的答案实际上是 Struts 拦截器 "execAndWait"。 我决定在 AJAX 上使用它,因为我正在处理现有的应用程序并且所有 Struts 管道都已到位。 这是Struts guide on this