JAVAEE model 1 모델 상품 조회 기록 실현(중복 조회 기록 제거)(1)
모델 1 모델 에는 servlet 이 없습니다.
모델 1 결과 도 는 다음 과 같다.
Model 1 의 유지 가능성 확장 성 이 떨 어 집 니 다. 작은 종목 에 만 적합 하 다.
우선 실행 결과
goods.jsp
<%@page import="entity.Items"%>
<%@page import="dao.ItemsDao"%>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<style type="text/css">
div {
float: left;
margin: 10px;
}
div dd {
margin: 0px;
font-size: 10pt;
}
div dd.dd_name {
color: blue;
}
div dd.dd_city {
color: #000;
}
</style>
</head>
<body>
<center>
<h1> </h1>
<hr>
<table width="800" height="60" cellpadding="0" cellspacing="0"
border="0">
<tr>
<td>
<%
ItemsDao dao = new ItemsDao();
ArrayList<Items> list = new ArrayList<Items>();
// dao list
list = dao.getAllItems();
if (list != null && list.size() > 0) {
//
for (int i = 0; i < list.size(); i++) {
Items item = list.get(i);
%>
<div>
<dl>
<dt>
<a href="details.jsp?id=<%=item.getId()%>"><img
src="images/<%=item.getPicture()%>" width="120" height="90"
border="1" />
</a>
</dt>
<dd class="dd_name"><%=item.getName()%></dd>
<dd class="dd_city">
:<%=item.getCity()%> :¥
<%=item.getPrice()%></dd>
</dl>
</div> <%
}
}
%>
</td>
</tr>
</table>
</center>
</body>
</html>
코드 에 상품 을 표시 하 는 그림
<span style="white-space:pre"> </span>
<a href="details.jsp?id=<%=item.getId()%>">
<img src="images/<%=item.getPicture()%>" width="120" height="90" border="1" />
</a>
상품 이미지 클릭 으로 현재 상품 의 id 를 details 페이지 에 전달 합 니 다.details.jsp 상품 id 로 상세 상품 표시 ,조회 기록 은 cookies 에서 유지 합 니 다.
<%@page import="org.apache.taglibs.standard.tag.common.xml.ForEachTag"%>
<%@page import="entity.Items"%>
<%@page import="dao.ItemsDao"%>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<style type="text/css">
#historyview {
border: 1;
background: #EAEAEE;
}
#historyview td {
font-size: 10px;
}
</style>
</head>
<body>
<center>
<h1> </h1>
<hr>
<table width="750" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="70%">
<center>
<table border="0">
<%
ItemsDao dao = new ItemsDao();
// request id dao
Items item = dao.getItemById(Integer.parseInt(request
.getParameter("id")));
if (item != null) {
%>
<tr>
<td rowspan="5"><img src="images/<%=item.getPicture()%>"
width="200" height="150"></td>
</tr>
<tr>
<td><b><%=item.getName()%></b>
</td>
</tr>
<tr>
<td id="cityname"> :<%=item.getCity()%></td>
</tr>
<tr>
<td id="pricename"> :<%=item.getPrice()%> ¥</td>
</tr>
<tr>
<td id="pricename"> :<%=item.getPrice()%> ¥</td>
</tr>
<%
}
// cookies
Cookie[] cookies = request.getCookies();
String historyStr = "";
for (Cookie c : cookies) {
if (c.getName().equals("history")) {
historyStr = c.getValue();
}
}
historyStr += item.getId() + ",";
Cookie c = new Cookie("history", historyStr);
// cookies
response.addCookie(c);
%>
</table>
</center></td>
<td width="30%" valign="top" id="historyview">
<center>
<table>
<tr>
<td><b> </b></td>
</tr>
<%
// cookie dao list
ArrayList<Items> historyItems = dao.getHistoryView(historyStr);
if (historyItems != null && historyItems.size() > 0) {
//
for (Items historyItem : historyItems) {
%>
<tr>
<td><a href="details.jsp?id=<%=historyItem.getId()%>"><img
src="images/<%=historyItem.getPicture()%>" width="100"
height="80" border="1"> </a></td>
</tr>
<tr>
<td><b><%=historyItem.getName()%></b>
</td>
</tr>
<tr>
<td> :<%=historyItem.getCity()%></td>
</tr>
<%
}
}
%>
</table>
</center>
</td>
</tr>
</table>
</center>
</body>
</html>
dao 층 상품 이 데이터베이스 에서 의 조회 조작 을 책임 진다.
package dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import util.DBHelper;
import entity.Items;
//
public class ItemsDao {
//
public ArrayList<Items> getAllItems() {
//
ArrayList<Items> list = new ArrayList<Items>();
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
conn = DBHelper.getConnection();
String sql = "select * from items";// sql
ps = conn.prepareStatement(sql);
rs = ps.executeQuery();
//
while (rs.next()) {
Items item = new Items();
item.setId(rs.getInt("id"));
item.setName(rs.getString("name"));
item.setCity(rs.getString("city"));
item.setPrice(rs.getDouble("price"));
item.setPicture(rs.getString("picture"));
item.setNumber(rs.getInt("number"));
list.add(item);
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
//
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (ps != null) {
try {
ps.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return list;
}
//
public Items getItemById(int id) {
Items item = new Items();
Connection con = null;
PreparedStatement ps = null;
ResultSet rs = null;
String sql = "select * from items where id = ?";
try {
con = DBHelper.getConnection();
ps = con.prepareStatement(sql);
ps.setInt(1, id);
rs = ps.executeQuery();
// id item
if (rs.next()) {
item.setId(rs.getInt("id"));
item.setName(rs.getString("name"));
item.setCity(rs.getString("city"));
item.setPrice(rs.getDouble("price"));
item.setPicture(rs.getString("picture"));
item.setNumber(rs.getInt("number"));
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
//
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (ps != null) {
try {
ps.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return item;
}
// cookie
public ArrayList<Items> getHistoryView(String cookie) {
ArrayList<Items> list = new ArrayList<Items>();
String ids[] = cookie.split(",");
int counts = 3;//
if (ids != null && ids.length > 0) {
for (int i = ids.length - 1; i >= 0 && i > ids.length - counts - 1; i--) {
Items item = getItemById(Integer.parseInt(ids[i]));
/*
* counts+1 ( list 3 )
*/
if (list.contains(item)) {
counts++;
continue;
}
list.add(item);
}
}
return list;
}
}
상품 의 실체 아 이 템
package entity;
public class Items {
private int id;
private String name;
private String city;
private double 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 double getPrice() {
return price;
}
public void setPrice(double 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;
}
@Override
public int hashCode() {
// TODO Auto-generated method stub
return this.getId()+this.getName().hashCode();
}
@Override
public boolean equals(Object obj) {
if(this==obj)
{
return true;
}
else
{
if(obj instanceof Items)
{
Items item=(Items) obj;
if(this.getId()==item.getId()&&this.getName().equals(item.getName()))
{
return true;
}
}
}
return false;
}
}
여기 있 습 니 다. hasCode 와 equals 방법 을 다시 썼 습 니 다. 비교 방식 을 수정 하 겠 습 니 다. 。그 러 니 비교 방식 을 고 쳐 야 한다)조회 기록 에 있어 서 우 리 는 현재 상품 리 셋 을 통 해 조회 기록 은 모두 이 상품 입 니 다.저 희 는 이 상품 이 조회 기록 에 하나 밖 에 없다 는 것 을 보증 하면 됩 니 다.
그래서 dao 층 에 있 는 getHistory View 방법 에 이 코드 가 있어 요.
<span style="white-space:pre"> </span>if (list.contains(item)) {
counts++;
continue;
}
그다음에 공구 류.DBHelpher 단일 모드 에서 connection 대상 획득
package util;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DBHelper {
private static final String driver = "com.mysql.jdbc.Driver";
private static final String url = "jdbc:mysql://localhost:3306/shopping?useUnicode=true&charcterEncoding=UTF-8";
private static final String username = "root";
private static final String password = "123";
private static Connection con = null;
//
static {
try {
Class.forName(driver);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static Connection getConnection() {
if (con == null) {
try {
con = DriverManager.getConnection(url, username, password);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return con;
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
crm 프로젝트 요약2. 고객 신규 구현(데이터 사전 포함) 페이지 출력: 현재 페이지 수 현재 페이지 수(프론트 데스크톱 전송) 각 디스플레이 페이지 수(프론트 데스크톱 전송) 총 페이지 수(PageBean 봉인 시 3 및 4 기준)...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.