易购网上商城01
Posted 光何
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易购网上商城01相关的知识,希望对你有一定的参考价值。
易购商城的第一天
1 安排计划
1、电商行业的背景。
2、易购商城的介绍。
3、工程项目的搭建。
2 电商行业介绍
2.1 电商行业技术特点
- 技术新
- 技术范围广
- 分布式
- 高并发、集群、负载均衡、高可用
- 海量数据
- 业务复杂
- 系统安全
3 易购商城
3.1 易购商城简介
3.1.1 电商行业的模式:
B2B:企业对企业。阿里巴巴
B2C:企业对客户 淘宝,(京东B2B2C) 苏宁易购
C2C:客户对客户 闲鱼 赶集 友邻
O2O:线上对线下 百度外卖。美容到家。。。
3.1.2 易购商城的模式
易购网上商城是一个综合性的B2C平台,类似京东商城、天猫商城。会员可以在商城浏览商品、下订单,以及参加各种活动。
管理员、运营可以在平台后台管理系统中管理商品、订单、会员等。
客服可以在后台管理系统中处理用户的询问以及投诉。
3.2 功能模块
3.2.1 功能描述
后台管理系统:管理商品、订单、类目、商品规格属性、用户管理以及内容发布等功能。
前台系统:用户可以在前台系统中进行注册、登录、浏览商品、首页、下单等操作。
会员系统:用户可以在该系统中查询已下的订单、收藏的商品、我的优惠券、团购等信息。
订单系统:提供下单、查询订单、修改订单状态、定时处理订单。
搜索系统:提供商品的搜索功能。
单点登录系统:为多个系统之间提供用户登录凭证以及查询登录用户的信息。
3.3 技术架构
3.3.1 传统架构
传统项目架构问题:
1、 模块之间耦合度过高,其中一个升级其他都得升级
2、 开发困难,各个团队开发最后都要整合一起
3、 系统的扩展性差
4、 不能灵活的进行分布式部署。
解决方法:分布式设计
优点:
把模块拆分成独立的工程,单点运行。如果某一个点压力大可以对这一个点单独增加配置。其他的点不受影响。
缺点:
系统之间交互需要额外的工作量来进行接口的开发。
把系统拆分成多个工程,要完成系统的工程需要多个工程协作完成。这种形式叫做分布式。
3.3.2 分布式的架构
分布式架构:
把系统按照模块拆分成多个子系统。
优点:
1、把模块拆分,使用接口通信,降低模块之间的耦合度。
2、把项目拆分成若干个子项目,不同的团队负责不同的子项目。
3、增加功能时只需要再增加一个子项目,调用其他系统的接口就可以。
4、可以灵活的进行分布式部署。
缺点:
系统之间交互需要使用远程通信,调用接口。接口开发增加工作量。
3.3.3 技术选型(主要技术)
l Spring、SpringMVC、Mybatis
l JSP、JSTL、jQuery、jQuery plugin、EasyUI、KindEditor(富文本编辑器)、CSS+DIV
l Redis(缓存服务器)
l Solr(搜索)
l httpclient(调用系统服务)
l mysql
l nginx(web服务器)
3.3.4 开发工具和环境
Eclipse 4.5.0(Mars),自带maven插件。
Maven 3.3.3(开发工具自带)
Tomcat 7.0.53(Maven Tomcat Plugin)
JDK 1.7
Mysql 5.5
Nginx 1.8.0
Redis 3.0.0
Win7 操作系统
4 后台管理系统工程搭建
4.1 Maven
优点:1,依赖注入。
2,可以使用maven一些插件,tomcat
3,完成热部署。
4.2 Maven的工程类型:
Jar:javaProject
War:webProject
Pom:创建maven的逻辑项目。如:parent,使用maven构建聚合项目。
4.3 父工程的搭建
父工程应该是一个pom工程。在父工程中定义依赖的jar包的版本信息。Maven插件的版本。
4.3.1 安装本地仓库
使用.m2覆盖本地仓库的内容。
4.3.2 创建maven工程
4.3.3 修改pom文件
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.ego</groupId>
5 <artifactId>ego-parent</artifactId>
6 <version>0.0.1-SNAPSHOT</version>
7 <packaging>pom</packaging>
8 <!-- 集中定义依赖版本号 -->
9 <properties>
10 <junit.version>4.12</junit.version>
11 <spring.version>4.1.3.RELEASE</spring.version>
12 <mybatis.version>3.2.8</mybatis.version>
13 <mybatis.spring.version>1.2.2</mybatis.spring.version>
14 <mybatis.paginator.version>1.2.15</mybatis.paginator.version>
15 <mysql.version>5.1.32</mysql.version>
16 <slf4j.version>1.6.4</slf4j.version>
17 <jackson.version>2.4.2</jackson.version>
18 <druid.version>1.0.9</druid.version>
19 <httpclient.version>4.3.5</httpclient.version>
20 <jstl.version>1.2</jstl.version>
21 <servlet-api.version>2.5</servlet-api.version>
22 <jsp-api.version>2.0</jsp-api.version>
23 <joda-time.version>2.5</joda-time.version>
24 <commons-lang3.version>3.3.2</commons-lang3.version>
25 <commons-io.version>1.3.2</commons-io.version>
26 <commons-net.version>3.3</commons-net.version>
27 <pagehelper.version>3.4.2-fix</pagehelper.version>
28 <jsqlparser.version>0.9.1</jsqlparser.version>
29 <commons-fileupload.version>1.3.1</commons-fileupload.version>
30 <jedis.version>2.7.2</jedis.version>
31 <solrj.version>4.10.3</solrj.version>
32 </properties>
33 <!-- 只定义依赖的版本,并不实际依赖 -->
34 <dependencyManagement>
35 <dependencies>
36 <!-- 时间操作组件 -->
37 <dependency>
38 <groupId>joda-time</groupId>
39 <artifactId>joda-time</artifactId>
40 <version>${joda-time.version}</version>
41 </dependency>
42 <!-- Apache工具组件 -->
43 <dependency>
44 <groupId>org.apache.commons</groupId>
45 <artifactId>commons-lang3</artifactId>
46 <version>${commons-lang3.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.commons</groupId>
50 <artifactId>commons-io</artifactId>
51 <version>${commons-io.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>commons-net</groupId>
55 <artifactId>commons-net</artifactId>
56 <version>${commons-net.version}</version>
57 </dependency>
58 <!-- Jackson Json处理工具包 -->
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 <version>${jackson.version}</version>
63 </dependency>
64 <!-- httpclient -->
65 <dependency>
66 <groupId>org.apache.httpcomponents</groupId>
67 <artifactId>httpclient</artifactId>
68 <version>${httpclient.version}</version>
69 </dependency>
70 <!-- 单元测试 -->
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <version>${junit.version}</version>
75 <scope>test</scope>
76 </dependency>
77 <!-- 日志处理 -->
78 <dependency>
79 <groupId>org.slf4j</groupId>
80 <artifactId>slf4j-log4j12</artifactId>
81 <version>${slf4j.version}</version>
82 </dependency>
83 <!-- Mybatis -->
84 <dependency>
85 <groupId>org.mybatis</groupId>
86 <artifactId>mybatis</artifactId>
87 <version>${mybatis.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.mybatis</groupId>
91 <artifactId>mybatis-spring</artifactId>
92 <version>${mybatis.spring.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>com.github.miemiedev</groupId>
96 <artifactId>mybatis-paginator</artifactId>
97 <version>${mybatis.paginator.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>com.github.pagehelper</groupId>
101 <artifactId>pagehelper</artifactId>
102 <version>${pagehelper.version}</version>
103 </dependency>
104 <!-- MySql -->
105 <dependency>
106 <groupId>mysql</groupId>
107 <artifactId>mysql-connector-java</artifactId>
108 <version>${mysql.version}</version>
109 </dependency>
110 <!-- 连接池 -->
111 <dependency>
112 <groupId>com.alibaba</groupId>
113 <artifactId>druid</artifactId>
114 <version>${druid.version}</version>
115 </dependency>
116 <!-- Spring -->
117 <dependency>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring-context</artifactId>
120 <version>${spring.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>org.springframework</groupId>
124 <artifactId>spring-beans</artifactId>
125 <version>${spring.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>org.springframework</groupId>
129 <artifactId>spring-webmvc</artifactId>
130 <version>${spring.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>org.springframework</groupId>
134 <artifactId>spring-jdbc</artifactId>
135 <version>${spring.version}</version>
136 </dependency>
137 <dependency>
138 <groupId>org.springframework</groupId>
139 <artifactId>spring-aspects</artifactId>
140 <version>${spring.version}</version>
141 </dependency>
142 <!-- JSP相关 -->
143 <dependency>
144 <groupId>jstl</groupId>
145 <artifactId>jstl</artifactId>
146 <version>${jstl.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>javax.servlet</groupId>
150 <artifactId>servlet-api</artifactId>
151 <version>${servlet-api.version}</version>
152 <scope>provided</scope>
153 </dependency>
154 <dependency>
155 <groupId>javax.servlet</groupId>
156 <artifactId>jsp-api</artifactId>
157 <version>${jsp-api.version}</version>
158 <scope>p以上是关于易购网上商城01的主要内容,如果未能解决你的问题,请参考以下文章
商城项目01 _电商系统基本模式分布式基础概念微服务架构图微服务划分图
商城项目01_电商系统基本模式分布式基础概念微服务架构图微服务划分图