全套资源下载地址:https://download.csdn.net/download/sheziqiong/
全套资源下载地址:https://download.csdn.net/download/sheziqiong/
目录
— . 电商 1
学习目标 1
1.1 什么是电商 1
1.2 电商的模式 1
1.2.1 B2C 2
1.2.2 B2B 4
1.2.3 C2C 4
二 易买网简介 4
2.1 涉及技术 6
三 开发环境 6
四 环境搭建 7
4. Tomcat 目录结构 12
5. Eclipse 关联 Tomcat 14
五 需求分析 14
1.页面原型 14
3.数据库建模 16
本次项目是一个大家常见B2C电商网站。企业通过互联网为消费者提供一个新型的购物环境,消费者通过网络在网上购物、在 网上支付。大大提高了交易效率,特别对于工作忙碌的上班族,本文转载自http://www.biyezuopin.vip/onews.asp?id=15202这种模式可以为其节省宝贵的时间。
本次项目通过首页展示、一级二级导航、商品详情、购物车、搜索业务、订单、用户模块组成电商核心模块
2.首页需求
2.2功能说明
分类导航标签
热门导航标签
购物车

未登录状态
用户&登录…
未登录状态:
显示登录,点击登录,跳转到登录页面登录状态:
显示登录用户名,点击用户名,跳转到个人中心页面注册:
点击注册,跳转到注册页面留言:
点击留言,跳转到留言页面注销:
点击注销,提示用户是否确定退出系统,如果是,注销当前登录用户,并返回首页 模糊查询:
可以输入关键字查询指定商品搜索:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>易买网 - 首页</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="header" class="wrap">
<!-- 导航栏信息 -->
<jsp:include page="common/top.jsp"/>
</div>
<div id="main" class="wrap">
<div class="lefter">
<!-- 商品分类信息栏 -->
<jsp:include page="common/left.jsp"/>
</div>
<!-- 特价商品& 热门& 新闻& 公告 -->
<div class="main">
<div class="price-off">
<h2>今日特价</h2>
<ul class="product clearfix">
<c:forEach items="${specialPriceProductList}" var="spProduct">
<li>
<dl>
<dt>
<a href="product_showProduct.action?productId=${spProduct.id }" ><img src="${spProduct.proPic}"></a>
</dt>
<dd class="title">
<a href="product_showProduct.action?productId=${spProduct.id }" >${spProduct.name}"</a>
</dd>
<dd class="price">¥${spProduct.price}</dd>
</dl>
</li>
</c:forEach>
</ul>
</div>
<div class="side">
<div class="news-list">
<h4>最新公告</h4>
<ul>
<c:forEach items="${noticeList}" var="notice">
<li><a href="notice_showNotice.action?noticeId=${notice.id }">${notice.title}</a> </li>
</c:forEach>
</ul>
</div>
<div class="spacer "></div>
<div class="news-list">
<h4>新闻动态</h4>
<ul>
<c:forEach items="${newsList}" var="news">
<li><a href="news_showNews.action?newsId=${news.id }">${news.title}</a> </li>
</c:forEach>
</ul>
</div>
</div>
<div class="spacer clear"></div>
<div>
<h2>热卖推荐</h2>
<ul class="product clearfix">
<c:forEach items="${hotProductList}" var="hProduct">
<li>
<dl>
<dt>
<a href="product_showProduct.action?productId=${hProduct.id }"><img src="${hProduct.proPic}"/></a>
</dt>
<dd class="title">
<a href="product_showProduct.action?productId=${hProduct.id }">${hProduct.name}"/></a>
</dd>
<dd class="price">¥${hProduct.price}</dd>
</dl>
</li>
</c:forEach>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
<div id="footer">
<!-- 版权信息位置预留 -->
<jsp:include page="common/footer.jsp"></jsp:include>
</div>
<!-- 访问当前项目
我们有初始化请求拦截的
http://localhost:8080/你的项目名称/index
-->
</body>
</html>
讯享网





全套资源下载地址:https://download.csdn.net/download/sheziqiong/
全套资源下载地址:https://download.csdn.net/download/sheziqiong/
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/35318.html