案例:商品瀏覽記錄的實現
說明:
主要技術:使用 cookie 實現商品瀏覽記錄;
專案模型:採用Model 1 (jsp + JavaBean);
步驟:
(1)DBHelper類實現資料庫的連線操作;
(2)實體類;資料庫表的對映
(3)業務邏輯類;DAO
(4)建立頁面;
一、連線資料庫:
(1)在WEB-INF的lib下匯入jar包;
(2)DBHelper類
package com.mall.utils;
import java.sql.Connection;
import java.sql.DriverManager;
public class DBHelper {
private static final String driver="com.mysql.jdbc.driver";//資料庫驅動;
//連線資料庫的url地址
private static final String url="jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=UTF-8";
private static final String username="root"; //資料庫使用者名稱
private static final String password="root"; //資料庫密碼
private static Connection conn=null;//資料庫連線物件
//靜態程式碼塊負責載入驅動;
static {
try {
Class.forName(driver);
}catch(Exception ex){
ex.printStackTrace();
}
}
// 單例模式返回資料庫連線物件
public static Connection getConnnection() throws Exception{
// TODO Auto-generated method stub
if (conn==null) {
conn = DriverManager.getConnection(url,username,password);
return conn;
}
return conn;
}
//連線測試:
public static void main(String[] args) {
try {
Connection conn = DBHelper.getConnnection();
if (conn != null) {
System.out.println("資料庫連線成功!");
}else {
System.out.println("資料庫連線異常!");
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
二、建立資料庫表:
items表:商品資訊表
三、目錄結構及原始碼:
建立實體類:Goods.java;
package com.mall.beans;
//商品類
public class Goods {
private int id;
private String name;
private String city;//產地
private int price;
private int number;//庫存
private String picture;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
public String getPicture() {
return picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
}
業務邏輯類:GoodsDao.java;
package com.mall.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import com.mall.beans.Goods;
import com.mall.utils.DBHelper;
public class GoodsDao {
//獲得所有商品資訊
public ArrayList
Connection conn = null;
PreparedStatement stmt = null;
ResultSet rs = null;
//商品集合
ArrayList
try {
conn = DBHelper.getConnnection();
String sql = "select * from goods;";
stmt = conn.prepareStatement(sql);
rs = stmt.executeQuery();
while(rs.next()) {
Goods goods = new Goods();
goods.setId(rs.getInt("id"));
goods.setName(rs.getString("name"));
goods.setCity(rs.getString("city"));
goods.setNumber(rs.getInt("number"));
goods.setPrice(rs.getInt("price"));
goods.setPicture(rs.getString("picture"));
goodsList.add(goods);
}
return goodsList;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
} finally {
//釋放資料集物件
if(rs != null) {
try {
rs.close();
rs = null;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//釋放語句物件
if(stmt != null) {
try {
stmt.close();
stmt = null;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
//根據商品編號獲得商品資料;
public Goods getGoodsById(int id) {
Connection conn = null;
PreparedStatement stmt = null;
ResultSet rs = null;
try {
conn = DBHelper.getConnnection();
String sql = "select * from goods where id=?;";
stmt = conn.prepareStatement(sql);
stmt.setInt(1, id);
rs = stmt.executeQuery();
if(rs.next()) {
Goods goods = new Goods();
goods.setId(rs.getInt("id"));
goods.setName(rs.getString("name"));
goods.setCity(rs.getString("city"));
goods.setNumber(rs.getInt("number"));
goods.setPrice(rs.getInt("price"));
goods.setPicture(rs.getString("picture"));
return goods;
}else {
return null;
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
} finally {
//釋放資料集物件
if(rs != null) {
try {
rs.close();
rs = null;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//釋放語句物件
if(stmt != null) {
try {
stmt.close();
stmt = null;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
//使用cookie儲存瀏覽記錄;
public ArrayList getViewList(String list){
ArrayList goodsList = new ArrayList();
int iCount=5; //每次返回前5條;
if(list != null && list.length()>0) {
String[] arr = list.split("#");
//如果商品記錄大於等於"iCount"條,倒敘輸出最後"iCount"條;
if(arr.length>=iCount) {
for(int i = arr.length-1;i>=arr.length-iCount;i--) {
goodsList.add(getGoodsById(Integer.parseInt(arr[i])));
}
}
else {//否則直接倒敘輸出;
for(int i = arr.length-1;i>=0;i--) {
goodsList.add(getGoodsById(Integer.parseInt(arr[i])));
}
}
// for(String s:arr) {
// int id = Integer.parseInt(s);
// goodsList.add(getGoodsById(id));
// }
return goodsList;
}
else {
return null;
}
}
}
商品展示頁面:index.jsp;
pageEncoding="UTF-8"%>
商品展示頁面:goods_details.jsp
pageEncoding="UTF-8"%>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4822/viewspace-2799215/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Cookie記錄瀏覽記錄Cookie
- 【PB案例學習筆記】-02 目錄瀏覽器筆記瀏覽器
- [練手] 使用 Redis 模擬登陸使用者瀏覽商品頁面的 token 維護,足跡記錄,清理多餘記錄的實現Redis
- chrome瀏覽器使用記錄Chrome瀏覽器
- 微信登入+商品瀏覽
- 理解瀏覽器的歷史記錄瀏覽器
- 瀏覽器歷史記錄的返回瀏覽器
- JSP 商品瀏覽[Web application]JSWebAPP
- 4 22微信小程式商品瀏覽微信小程式
- 【PB案例學習筆記】-04檔案瀏覽器筆記瀏覽器
- 【PB案例學習筆記】-05 圖片瀏覽器筆記瀏覽器
- 【問題記錄】- 谷歌瀏覽器 Html生成PDF谷歌瀏覽器HTML
- 使用 JavaScript 操作瀏覽器歷史記錄 APIJavaScript瀏覽器API
- 理解瀏覽器歷史記錄(2)- hashchange、pushState瀏覽器
- javascript實現的控制瀏覽器全屏效果 [JavaScript瀏覽器
- JS實現瀏覽器列印WordJS瀏覽器
- 深夜除錯某瀏覽器記憶體損壞的小記錄除錯瀏覽器記憶體
- Mac上的Safari瀏覽器如何檢視歷史記錄?Mac瀏覽器
- Win10系統清除位址列瀏覽記錄的方法Win10
- 從零實現的瀏覽器Web指令碼瀏覽器Web指令碼
- 瀏覽器錄屏技術:探索網頁內容的視覺記錄之道瀏覽器網頁視覺
- 記錄--淘寶、京東複製好友連結彈出商品詳情是如何實現的
- 【C#學習筆記】瀏覽目錄得到路徑C#筆記
- UITableview巢狀UITableView案例實踐(仿淘寶商品詳情頁實現)UIView巢狀
- IE瀏覽器 自定義地址協議的實現瀏覽器協議
- 微博微信圖片瀏覽過渡動畫的實現動畫
- 微信跳轉瀏覽器提示,微信瀏覽器中直接跳轉手機預設瀏覽器是怎麼實現的瀏覽器
- php實現網站瀏覽足跡功能PHP網站
- 如何實現一個圖片瀏覽器瀏覽器
- nginx下目錄瀏覽及其驗證功能、版本隱藏等配置記錄Nginx
- win10系統去掉動態磁貼瀏覽記錄的方法Win10
- 瀏覽網頁記錄 (一)程式設計師應當知道的事情網頁程式設計師
- Redis In Action 筆記(三):使用者登入、瀏覽記錄的快取與管理Redis筆記快取
- 瀏覽器定位是如何實現的?為什麼會有瀏覽器定位失敗的情況?瀏覽器
- 使用瀏覽器錄製螢幕瀏覽器
- IIS Express 啟用目錄瀏覽Express
- apache關閉目錄瀏覽功能Apache
- 前端實現很哇塞的瀏覽器端掃碼功能?前端瀏覽器