[原]Java web学習シリーズのJava web開発中のHibernateとサーブレットを組み合わせてページングする
6279 ワード
まず、Hibernateファイル(HibernateSessionFactory)とエンティティークラスを構成します.
Hibernate.cfg.xmlの構成は次のとおりです.
次はdaoクラスです.
次にサーブレットを構成します.
ここのサーブレットはactionの機能を実現して制御層の任務を完成します:
index.jspページの上にJSTLラベルライブラリを使用し、ここではサーバースクリプトの使用をできるだけ避け、ページの安全性を保証することを目的としています.
まず、ファイルサポートをインポートします.
次に、読み出したデータを表示します.
メモ 2010-9-1 10:56
Hibernate.cfg.xmlの構成は次のとおりです.
<hibernate-configuration>
<session-factory>
<property name="connection.username">sa</property>
<property name="connection.url">
jdbc:sqlserver://localhost:1433;databaseName=GOODS
</property>
<property name="dialect">
org.hibernate.dialect.SQLServerDialect
</property>
<property name="myeclipse.connection.profile">sal</property>
<property name="connection.password">sasa</property>
<property name="connection.driver_class">
com.microsoft.sqlserver.jdbc.SQLServerDriver
</property>
<mapping resource="org/clarck/model/entity/Sell.hbm.xml" />
<mapping resource="org/clarck/model/entity/Goods.hbm.xml" />
<mapping resource="org/clarck/model/entity/Selldetail.hbm.xml" />
</session-factory>
</hibernate-configuration>
次はdaoクラスです.
public class GoodsDAO {
public List<Goods> showGoods(int pageIndex ,int pageSize){
Session session=HibernateSessionFactory.getSession();
Query query=session.createQuery("from Goods");//hql query
query.setFirstResult((pageIndex-1)*pageSize).setMaxResults(pageSize);//
List<Goods> list=query.list();
session.close();
return list;
}
}
次にサーブレットを構成します.
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>ShowServlet</servlet-name>
<servlet-class>org.clarck.web.action.ShowServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ShowServlet</servlet-name>
<url-pattern>/ShowServlet</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
ここのサーブレットはactionの機能を実現して制御層の任務を完成します:
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
int pageIndex=1;
int pageSize=2;
String strIndex=request.getParameter("pageIndex");
if(strIndex==null){
pageIndex=1;
}
else {
pageIndex=Integer.parseInt(strIndex);// Integer pageIndex
}
GoodsDAO goodsDAO=new GoodsDAO();
List<Goods> list=goodsDAO.showGoods(pageIndex, pageSize);// list
HttpSession session=request.getSession();//Servlet session, session HttpSession
session.setAttribute("pageIndex", pageIndex);// session
session.setAttribute("pageList", list);// list session
response.sendRedirect("index.jsp");// index.jsp
}
index.jspページの上にJSTLラベルライブラリを使用し、ここではサーバースクリプトの使用をできるだけ避け、ページの安全性を保証することを目的としています.
まず、ファイルサポートをインポートします.
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
次に、読み出したデータを表示します.
<body>
<table>
<c:forEach var="goods" items="${pageList}">
<tr>
<td>${goods.goodsId}</td>
<td>${goods.goodsNum}</td>
<td>${goods.goodsName}</td>
<td>${goods.price}</td>
<td>${goods.produceDatetime}</td>
<td>${goods.quality}</td>
<td>${goods.address}</td>
<td>${goods.state}</td>
</tr>
</c:forEach>
</table>
<a href="ShowServlet?pageIndex=${pageIndex-1}"> </a>
<a href="ShowServlet?pageIndex=${pageIndex+1}"> </a>
</body>
メモ 2010-9-1 10:56