我有一个问题,就是在jsp中显示一个arraylist。它为每个重复的人显示一行中的所有内容。 我有一个列表(电话号码,传真,电话2,电子邮件)
这是我的dao功能:
@Override
public ArrayList<String> moyenCom(Authentication auth) {
String login=auth.getName();
List list;
List listres = null;
ArrayList<String> array1=new ArrayList<String>();
//ArrayList<ArrayList<String>> array=new ArrayList<ArrayList<String>>();
SessionFactory factory=new Configuration().configure().buildSessionFactory();
Session session=factory.openSession();
session.beginTransaction();
//Your operation
String sql1="select r.id_responsable from WEBCARE.PERSONNE p,WEBCARE.RESPONSABLE r,WBB_CLU.ABONNE_COMPTE ac,WBB_CLU.COMPTE_CLU c where p.id=r.id_responsable and r.id_abonne=ac.id_abonne and c.id_compte=ac.id_compte and c.login=:x";
SQLQuery query1 = session.createSQLQuery(sql1);
query1.setParameter("x",login);
query1.setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP);
session.getTransaction().commit();
list=query1.list();
for(int i=0;i<list.size();i++){
String res =list.get(i).toString();
String[] parts = res.split("=");
String part2 = parts[1];
System.out.println("id du responsable est"+res);
System.out.println("id du responsable spliteeee est "+part2);
session.beginTransaction();
String sql="select mc.information from WEBCARE.MOYEN_COMMUNICATION mc,WEBCARE.PERSONNE p where p.id=mc.id_categorie and mc.id_categorie=:part2 and mc.categorie=1";
SQLQuery query = session.createSQLQuery(sql);
query.setParameter("part2",part2);
query.setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP);
session.getTransaction().commit();
listres=query.list();
for(int i1=0;i1<listres.size();i1++){
String resu =listres.get(i1).toString();
System.out.println("info "+resu);
array1.add(resu);
}
}
System.out.println(array1);
return array1;
}
我的控制员:
@RequestMapping("/fichets")
public String fichets(Model model,Authentication auth){
Authentication authen = SecurityContextHolder.getContext().getAuthentication();
String name = authen.getName(); //get logged in username
model.addAttribute("moycoms",metier.moyenCom(auth));
return "InfoAbonneTS";
}
和我的jsp页面:
<c:forEach items="${resps}" var="resp">
<tr>
<td id="date">${resp.nom} ${resp.prenom}</td>
<td>${resp.poste}</td>
<td>${resp.password}</td>
<c:forEach items="${moycoms}" var="moycom">
<td>${moycom}</td>
</c:forEach>
</tr>
</tbody>
</c:forEach>
该函数返回字段信息,其中包含应在每列中显示的所有4个信息。 arraylist返回是:
{information=01234567890}, {information=01999999999}, {information=0199999333}, {information=resp1@gmail.com}, {information=00 }, {information=0622355114}, {information=0588888888}, {information=respons3@gmail.com}, {information=00 }, {information=0111111111}, {information=0666666666}, {information=responsable4@gmail.com}
所以前四个信息应该在每一列中显示,第二个四个相同的东西......在这个例子中我有3个人。 我无法正确显示任何帮助吗?
答案 0 :(得分:0)
查看数据看起来像是地图列表。试试这段代码
<c:forEach items="${moycoms}" var="moycom" varStatus="stat">
<c:if test="${stat.index%4==0 && stat.index!=0}">
<tr>
</c:if>
<td>${moycom['information']}</td>
<c:if test="${stat.index%4==0 && stat.index!=0}">
</tr>
</c:if>
</c:forEach>
stat变量用于查找当前索引。我们基于索引添加<tr>
,以便为每个第四个索引完成它。如果resp包含一些可用于查找正确用户的标识符,则使用<c:if>
进行匹配。请提供其他信息
答案 1 :(得分:0)
您只是将“moycoms”属性添加到模型对象
但你jstl从
开始
<c:forEach items="${resps}" var="resp">
您没有在模型对象中添加任何“resps”参数