我正在使用java web应用程序并使用struts2框架。我需要将Action类中的HashMap或LinkedList传递给jsp页面以显示所有记录。
我不想使用<%@ taglib prefix="s" uri="/struts-tags" %>
库从jsp页面获取所有记录。
我的代码 -
public class ViewStatusSHAction extends ActionSupport {
private LinkedList<SBean> humans = null;
private LinkedHashMap<String, String> hashMap =null;
public LinkedHashMap<String, String> getHashMap() {
return hashMap;
}
public void setHashMap(LinkedHashMap<String, String> hashMap) {
this.hashMap = hashMap;
}
public LinkedList<SBean> getHumans() {
return humans;
}
public void setHumans(LinkedList<SBean> humans) {
this.humans = humans;
}
public String execute() {
this.setHumans(new ViewStatusSHModel().getHumanDetails());
return Action.SUCCESS;
}
}
我想使用JSP语法显示从操作中获取的所有记录,但我不知道如何在没有<s:iterator></s:iterator>
的情况下获取所有记录
标签?