Chen Xingxu Blog

Study Share Communicate

Docker Learning Notes (05)

Example of installing MySQL

5.Docker入门笔记——安装MySQL示例 获取 MySQL docker pull mysql:5.5 错误的启动 docker run --name mysql01 -d mysql:5.5 查看日志 docker logs 42f09819908b error: database is uninitialized and password option is n...

Docker Learning Notes (04)

Docker image operation common commands and container operations

4.Docker入门笔记——Docker镜像操作常用命令与容器操作 Docker 常用命令 & 操作 1、镜像操作 操作 命令 说明 检索 docker search 关键字 例:docker search mysql 到 Docker Hub 上检...

Docker Learning Notes (03)

Docker installation, start, stop

3.Docker入门笔记——Docker安装、启动、停止 [TOC] 升级 CentOS 7 系统内核 检查内核版本,必须是 3.10 及以上 uname -r 如果版本低,可以尝试升级软件包及内核 yum update 具体升级内核的方法可以查看下面这篇博文: Linux CentOS7升级内核至最新的方法 安装 Docker yum install -y dock...

Docker Learning Notes (02)

Configuring CentOS7

2.Docker入门笔记——配置CentOS7 修改网络配置 vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE="Ethernet" PROXY_METHOD="none" BROWSER_ONLY="no" BOOTPROTO="dhcp" DEFROUTE="yes" IPV4_FAILURE_FATAL="no" IPV6IN...

Docker Learning Notes (01)

Introduction and core concepts

1.Docker入门笔记——简介与核心概念 简介 Docker 是一个开源的应用容器引擎,是一个轻量级容器技术。 Docker 支持将软件编译成一个镜像,然后在镜像中各种软件做好配置,将镜像发布出去,其他使用者可以直接使用这个镜像。 运行中的这个镜像称为容器,容器启动是非常快速的。 核心概念 Docker 主机 (Host):安装了 Docker 程序的机器(Docker...

Design and Implementation of an Online Course Purchase System(Catalog)

Development notes summary directory and Github address

易课寄在线购课系统开发笔记汇总目录及Gitee地址 Gitee地址 https://gitee.com/telyfox/ecourses 易课寄在线购课系统开发笔记 易课寄在线购课系统开发笔记(一)–系统分析与设计 易课寄在线购课系统开发笔记(二)–用户说明书 易课寄在线购课系统开发笔记(三)–数据库设计 易课寄在线购课系统开发笔记(四)–逆向工程 Mybatis ...

Design and Implementation of an Online Course Purchase System(35)

Configure and launch the project (with github address)

易课寄在线购课系统开发笔记(三十五)–配置及启动项目(附gitee地址) gitee 地址(码云) https://gitee.com/telyfox/ecourses 配置系统 hosts 文件 由于本项目涉及的服务过多,单纯使用 IP 标识易造成混乱,因此配置了本地 hosts,方便记忆和开发。下面是我配置的 hosts,仅供参考。 127.0.0.1 ecourses.cn ...

Design and Implementation of an Online Course Purchase System(34)

Complete the development of the order system

易课寄在线购课系统开发笔记(三十四)–完成订单系统的开发 订单系统 功能分析 1、在购物车页面点击 “去结算” 按钮跳转到订单确认页面; a) 展示课程列表; b) 配送地址列表; c) 选择支付方式。 2、展示订单确认页面之前,应该确认用户身份; a) 使用拦截器实现; b) Cookie 中取 token; c) 取不到 token 跳转到登录页面; d) 取到 t...

Design and Implementation of an Online Course Purchase System(33)

Complete the development of shopping cart system

易课寄在线购课系统开发笔记(三十三)–完成购物车系统的开发 购物车的实现 功能分析 1、购物车是一个独立的表现层工程; 2、添加购物车不要求登录,可以指定购买课程的数量; 3、展示购物车列表页面; 4、修改购物车课程数量; 5、删除购物车课程。 工程搭建 ecourses-cart-web 打包方式 war 可以参考 易课寄在线购课系统开发笔记(七)–后台管理系统工程搭...

Design and Implementation of an Online Course Purchase System(32)

Application of JSONP to achieve login and registration page integration home page

易课寄在线购课系统开发笔记(三十二)–应用JSONP实现登录注册页面整合首页 登录注册页面整合首页 首页跳转到登录、注册页面 首页展示用户名 1、当用户登录成功后,在 Cookie 中有 token 信息。 2、从 Cookie 中取 token 根据 token 查询用户信息。 3、把用户名展示到首页。 方案一:在 Controller 中取 Cookie 中的 to...