我的一个jsp在声明中有一个功能
<%!
public String performLogic(String state) throws Exception {
String resposeXML = "";
resposeXML = GetRequestViaXML(pageContext);
}
%>
这个performLogic函数需要通过传递pagecontext作为参数来调用GetRequestViaXML函数,因此此pagecontext将用于获取先前在jsp的中设置的所有属性。
我无法修改performlogic或GetRequestViaXML的参数。
是否有可能在jsp的声明部分内获取页面上下文
pageContext.setAttribute("AppName","IVR");
pageContext.setAttribute("TransactionName","Billing");
最佳答案
仅当将声明作为参数传递时,才可以访问声明内的pageContext
对象:
public String performLogic(String state, PageContext pc) throws Exception {
pc.setAttribute("AppName","IVR");
......
}