Hibernate with struts 2 を使用して、データベースから Jsp ページにデータを表示しようとしています。エラーはありませんが、何も表示されません。他の投稿から解決策を見つけようとしましたが、できませんでした。これがアクションクラスです。
public class ListeActeurAction extends Action{
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest req, HttpServletResponse res) throws Exception {
System.out.println("Action");
ListeActeur ListeActeur= (ListeActeur) form;
String query = "select nomActeur from Acteur " ;
ListeActeur.setLis( HibernateUtil.ListeActeur(query, req));
req.setAttribute("ListeActeur", ListeActeur.getLis()) ;
return mapping.findForward("s");
methode:HibernateUtil.ListeActeur(クエリ、要求)
public static List <Acteur> ListeActeur(String query,HttpServletRequest req){
System.out.print("hutil");
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
Iterator results = session.createSQLQuery(query).list().iterator();
List <Acteur> list = new ArrayList<Acteur>();
while((results.hasNext()))
{
Acteur gg =new Acteur();
//Object[] row = (Object[]) results.next();
//gg.setActeurId((Integer)row[0]);
gg.setNomActeur(( java.lang.String)results.next());
list.add(gg);
}
req.getSession(true).setAttribute("ListeActeur", list);
session.getTransaction().commit();
HibernateUtil.getSessionFactory().close();
return list;
}
<html:form action="Liste" >
<table>
<tr>
<logic:iterate name="ListeActeur" property= "lis" id="Acteur" >
<td><b>Nom Acteur:<bean:write name="Acteur" property="nomActeur"/></b> <br></td>
<td><b>Adresse IP :<bean:write name="Acteur" property="adresseIp"/></b> <br> </td>
</tr>
</logic:iterate>
</table>
</html:form>
struts-config
<!DOCTYPE struts-config
PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<form-beans type="org.apache.struts.action.ActionFormBean">
<form-bean name="ListeActeur" type="mesForms.strust.ListeActeur"/>
</form-beans>
<action-mappings >
<action path="/Liste"
parameter="/vue/Invitation.jsp"
name="ListeActeur"
scope="session"
validate="false"
type="mesAction.struts.ListeActeurAction">
<forward name="s" path="/vue/Invitation.jsp" redirect="false" />
</action>
</action-mappings>
</struts-config>
何が間違っているのかわかりません。助けてください。ありがとう!!