我正在使用 Struts2 框架。我不知道为什么我无法在 JSP 页面中获取 Action 类的静态属性的值。在我的代码中,我的意思是静态属性是 : nbreAppelAction
。结果,我得到了映射到方法aa
的所有动作调用。我第一次打开我的.stayIndexAction
execute()
index.jsp
这是 Action 类:
public class UserAction extends ActionSupport{
private static int nbreAppelAction = 0;
public String execute(){
utilisateur = new User();
nbreAppelAction++;
return SUCCESS;
}
public static int getNbreAppelAction() {
return nbreAppelAction;
}
public static void setNbreAppelAction(int nbreAppelAction) {
UserAction.nbreAppelAction = nbreAppelAction;
}
}
这里是 index.jsp :
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<p>
<a href="<s:url action='stayIndexAction' />" >Stay in index.jsp </a>
</p>
<p>a<s:property value="nbreAppelAction" />a</p>
</body>
</html>