{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Java Web程序设计 慕课版

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Java Web程序设计 慕课版

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

30小时慕课教学视频同步讲解,让学习更高效快捷
200个精彩课堂案例,12个课堂实验,1个综合案例,Java Web学习从入门到精通
66道习题,300道自测题,5套自测试卷,巩固所学知识
提供免费教学资源,包括精品教学PPT、案例源代码、自测题库、拓展综合案例
Content Description

本书作为Java Web程序设计的教程,系统全面地介绍了有关Java Web程序开发所涉及的各类知识。全书共分14章,内容包括Web应用开发简介,网页前端开发基础,JavaScript脚本语言,Java EE开发环境,JSP技术,Servlet技术,数据库技术,程序日志组件,Struts 2框架,Hibernate技术,Hibernate高级应用,Spring框架,Spring与Struts 2、Hibernate框架的整合,开发天下淘网络商城。全书每章内容都与实例紧密结合,有助于学生理解知识、应用知识,达到学以致用的目的。
本书是慕课版教材,各章节主要内容配备了以二维码为载体的微课,并在人邮学院 平台上提供了在线慕课。本书还提供书中所有实例、上机指导、综合案例和课程设计的源代码,制作精良的电子课件PPT,自测试卷等内容,读者也可在人邮学院下载。其中,源代码全部经过精心测试,能够在Windows 7、Windows 8、Windows 10系统下编译和运行。
Author Description

明日科技,程序设计类畅销书作者,其主要作品“视频大讲堂”系列,每个品种都在其同品种的图书中销售名列前茅。累计销售数十万册。其中《Java Web从入门到精通》长期占据Web开发零售图书排行榜前三位,年销量上万册。
Catalogue

第一篇Web前端开发
第1章Web应用开发简介2
1.1网络程序开发体系结构3
1.1.1C/S体系结构介绍3
1.1.2B/S体系结构介绍3
1.1.3两种体系结构的比较3
1.2Web简介4
1.2.1什么是Web4
1.2.2Web应用程序的工作原理4
1.2.3Web的发展历程5
1.3Web开发技术6
1.3.1客户端应用技术6
1.3.2服务器端应用技术8
小结9
习题9
第2章网页前端开发基础10
2.1HTML11
2.1.1创建第一个HTML文件11
实例:用记事本编写第一个HTML文件
2.1.2HTML文档结构12
2.1.3HTML文本标记13
实例:在页面中输出一首古诗
实例:在HTML页面中定义文字,并通过标题标记和段落标记设置页面布局
实例:使用居中标记对页面中的内容进行居中处理
实例:使用无序列表对页面中的文字进行排序
实例:使用有序列表对页面中的文字进行排序
实例:使用
标签为指定区域添加样式
2.1.4表格标记18
实例:制作学生成绩表
2.1.5HTML表单标记20
实例:博客网站的注册页面
2.1.6超链接与图片标记24
实例:天下淘商品图片展示
2.2CSS样式表26
2.2.1CSS规则26
2.2.2CSS选择器27
实例:定义a标记选择器,在该标记选择器中定义超链接的字体与颜色
实例:更改页面字体的样式使用id选择器控制页面中字体的样式
2.2.3在页面中包含CSS29
实例:通过行内定义样式的形式,实现控制页面文字的颜色和大小
实例:通过链接式样式表的形式在页面中引入CSS样式
小结31
上机指导31
习题32
第3章JavaScript脚本语言33
3.1了解JavaScript34
3.1.1什么是JavaScript34
3.1.2JavaScript的主要特点34
3.1.3JavaScript与Java的区别34
3.2在Web页面中使用JavaScript35
3.2.1在页面中直接嵌入JavaScript35
实例:实现弹出欢迎访问网站的对话框
3.2.2链接外部JavaScript35
3.3JavaScript语言基础36
3.3.1JavaScript的语法36
3.3.2JavaScript中的关键字37
3.3.3了解JavaScript的数据类型37
3.3.4变量的定义及使用39
3.3.5运算符的应用40
实例:应用算术运算符计算商品金额
3.4函数43
3.4.1函数的定义43
3.4.2函数的调用44
实例:验证输入的字符串是否为汉字
3.4.3匿名函数45
3.5事件和事件处理程序45
3.5.1什么是事件和事件处理程序45
3.5.2JavaScript的常用事件45
3.5.3事件处理程序的调用46
3.6常用对象47
3.6.1String对象47
实例:去掉字符串中的首尾空格
3.6.2Math对象51
3.6.3Date对象51
实例:实时显示系统时间
3.6.4Window对象54
实例:显示公告信息窗口并自动关闭
3.7Ajax技术57
3.7.1什么是Ajax57
3.7.2Ajax的开发模式58
3.7.3Ajax的优点58
3.8传统Ajax工作流程59
3.8.1发送请求59
3.8.2处理服务器响应60
3.9jQuery技术61
3.9.1jQuery简介61
3.9.2下载和配置jQuery62
3.9.3jQuery的工厂函数62
3.9.4一个简单的jQuery脚本62
小结63
上机指导63
习题66
第4章Java EE开发环境67
4.1JDK的下载、安装与使用68
4.1.1下载68
4.1.2安装69
4.1.3配置环境变量71
4.2常用Java EE 服务器的安装、配置和使用72
4.3Eclipse开发工具的安装与使用73
4.3.1Eclipse的下载与安装74
4.3.2启动Eclipse75
4.3.3安装Eclipse中文语言包76
4.3.4Eclipse工作台78
4.3.5配置Web服务器79
4.3.6指定Web浏览器82
4.3.7设置JSP页面编码格式83
小结84
上机指导84
习题84
第二篇服务器端开发
第5章走进JSP86
5.1JSP概述87
5.1.1什么是JSP87
5.1.2如何学好JSP87
5.1.3JSP技术特征88
5.2开发第一个JSP程序88
5.2.1编写JSP程序88
实例:使用向导创建一个简单的JSP程序
5.2.2运行JSP程序91
5.3了解JSP的基本构成92
实例:了解JSP页面的基本构成
5.4指令标签93
5.4.1page指令93
5.4.2include指令95
实例:显示当前日期
5.4.3taglib指令96
5.5嵌入Java代码96
5.5.1代码片段96
实例:输出九九乘法表
5.5.2声明97
5.5.3JSP表达式98
5.6注释98
5.6.1HTML注释98
5.6.2JSP注释98
5.6.3动态注释99
5.6.4代码注释99
5.7JSP动作标签99
5.7.199
5.7.2101
实例:将首页请求转发到用户添加页面
5.7.3102
5.8request对象102
5.8.1获取请求参数值103
实例:使用request对象获取请求参数值
5.8.2获取form表单的信息103
实例:获取用户填写的资料表单
5.8.3获取请求客户端信息105
实例:获取用户IP等信息
5.8.4在作用域中管理属性106
实例:管理request对象属性
5.8.5cookie管理107
实例:实现自动登录
5.9response对象108
5.9.1重定向网页109
5.9.2处理HTTP文件头109
5.9.3设置输出缓冲110
5.10session对象110
5.10.1创建及获取session信息110
实例:创建和获取session信息
5.10.2从会话中移除指定的绑定对象111
5.10.3销毁session111
5.10.4会话超时的管理112
5.10.5session对象的应用112
实例:实现多页面操作同一用户
5.11application对象114
5.11.1访问应用程序初始化参数115
实例:在web.xml中配置数据库参数
5.11.2管理应用程序环境属性115
小结116
上机指导116
习题117
第6章Servlet技术118
6.1Servlet基础119
6.1.1Servlet与Servlet容器119
6.1.2Servlet技术特点119
6.1.3Servlet技术功能120
6.1.4Servlet与JSP的区别120
6.1.5Servlet代码结构121
6.1.6简单的Servlet程序122
实例:简单的Servlet程序
6.2Servlet开发122
6.2.1Servlet的创建122
6.2.2Servlet配置125
实例:通过Servlet显示页面
6.3Servlet API编程常用的接口和类126
6.3.1Servlet接口127
6.3.2ServletConfig接口127
6.3.3HttpServletRequest接口127
实例:输出前台请求信息
6.3.4HttpServletResponse接口129
实例:使用HttpServletResponse向客户端发送错误信息
6.3.5GenericServlet类130
6.3.6HttpServlet类130
6.4Servlet过滤器131
6.4.1过滤器概述131
6.4.2Filter API131
6.4.3过滤器的配置132
6.4.4过滤器典型应用133
实例:字符编码过滤器
小结135
上机指导136
习题137
第7章数据库技术138
7.1MySQL数据库139
7.1.1下载MySQL139
7.1.2安装MySQL139
7.1.3环境变量的配置145
7.2JDBC概述146
7.2.1JDBC技术介绍146
7.2.2JDBC驱动程序147
7.3JDBC中的常用接口148
7.3.1驱动程序接口Driver148
7.3.2驱动程序管理器Driver-Manager148
7.3.3数据库连接接口Connection148
7.3.4执行SQL语句接口Statement149
7.3.5执行动态SQL语句接口Prepared- Statement150
7.3.6执行存储过程接口Callable- Statement150
7.3.7访问结果集接口ResultSet151
7.4连接数据库152
7.4.1加载JDBC驱动程序152
7.4.2创建数据库连接152
7.4.3执行SQL语句152
7.4.4获得查询结果153
7.4.5关闭连接153
7.5数据库操作技术153
7.5.1查询操作153
实例:使用Statement查询天下淘商城用户账户信息
实例:使用PrepareStatement查询天下淘商城用户账户信息
7.5.2添加操作155
实例:使用Statement添加天下淘新用户账户信息
实例:使用PreparedStatement添加天下淘新用户账户信息
7.5.3修改操作156
实例:使用Statement修改天下淘新用户账户信息
实例:使用PreparedStatement修改天下淘用户账户信息
7.5.4删除操作157
实例:使用Statement删除天下淘用户账户信息
实例:使用PreparedStatement删除天下淘用户账户信息
小结157
上机指导157
习题160
第8章程序日志组件161
8.1简介162
8.2Logger162
8.2.1日志输出163
8.2.2配置日志163
8.2.3日志的继承164
8.3Appender164
8.4Layout165
8.5应用日志调试程序166
实例:打印用户注册信息的页面日志
小结169
上机指导170
习题170
第三篇Java Web开发框架的使用
第9章Struts 2框架172
9.1MVC设计模式173
9.2Struts 2框架概述173
9.3Struts 2入门174
9.3.1获取与配置Struts 2174
9.3.2创建第一个Struts 2程序175
实例:创建JavaWeb项目并添加Struts 2的支持类库,通过Struts 2将请求转发到指定JSP页面
9.4Action对象177
9.4.1认识Action对象177
9.4.2请求参数的注入原理178
9.4.3Action的基本流程178
9.4.4动态Action179
9.4.5应用动态Action180
实例:实现动态Action处理添加/更新用户信息请求
9.5Struts 2的配置文件181
9.5.1Struts 2的配置文件类型181
9.5.2配置Struts 2包182
9.5.3配置名称空间182
实例:为user包配置名称空间
9.5.4Action的相关配置183
9.5.5使用通配符简化配置185
实例:在struts.xml文件中应用通配符
9.5.6配置返回结果185
9.6Struts 2的标签库186
9.6.1数据标签186
9.6.2控制标签189
9.6.3表单标签190
9.7Struts 2的开发模式192
9.7.1实现与Servlet API的交互192
9.7.2域模型DomainModel192
9.7.3驱动模型ModelDriven193
9.8Struts 2的拦截器195
9.8.1拦截器概述195
9.8.2拦截器API196
9.8.3使用拦截器197
实例:配置天下淘商城中的管理员登录拦截器
9.9数据验证机制198
9.9.1手动验证198
9.9.2验证文件的命名规则198
9.9.3验证文件的编写风格199
实例:编写天下淘商城中的登录验证器
小结201
上机指导201
习题202
第10章Hibernate技术203
10.1初识Hibernate204
10.1.1理解ORM原理204
10.1.2Hibernate简介204
10.2Hibernate入门205
10.2.1获取Hibernate205
10.2.2Hibernate配置文件205
实例:编写天下淘商城的数据库连接的Hibernate配置文件
10.2.3了解并编写持久化类206
实例:编写天下淘商城的消费者用户的持久化类
10.2.4Hibernate映射208
实例:编写天下淘商城的消费者用户类的Hibernate映射文件
10.2.5Hibernate主键策略210
10.3Hibernate数据持久化210
10.3.1Hibernate实例状态210
10.3.2Hibernate初始化类211
实例:创建Hibernate的初始化类
10.3.3保存数据212
实例:向数据库中的产品信息表添加产品信息
10.3.4查询数据214
实例:利用get()方法加载产品对象
实例:利用load()方法加载产品对象
10.3.5删除数据216
实例:利用delete()方法删除指定的产品信息
10.3.6修改数据216
实例:修改指定的产品信息
10.3.7关于延迟加载217
实例:实现延迟加载
10.4使用Hibernate的缓存218
10.4.1一级缓存的使用218
实例:在同一Session中查询两次产品信息
10.4.2配置并使用二级缓存219
实例:利用二级缓存查询产品信息
小结221
上机指导221
习题224
第11章Hibernate高级应用225
11.1关联关系映射226
11.1.1数据模型与领域模型226
11.1.2理解并配置多对一单向关联226
实例:建立产品对象与生产商对象的多对一单向关联关系
11.1.3理解并配置多对一双向关联228
实例:建立产品对象与生产商对象的多对一双向关联关系
11.1.4理解并配置一对一主键关联230
实例:建立公民与身份证的一对一关联关系
11.1.5理解并配置一对一外键关联231
实例:建立公民对象与身份证对象的一对一外键关联关系
11.1.6理解并配置多对多关联关系233
实例:建立用户与角色的多对多关联关系
11.1.7了解级联操作234
实例:利用级联操作删除公民表中的信息和其在身份证表中所关联的信息
11.2HQL检索方式236
11.2.1了解HQL语言236
实例:在实际应用中的HQL语句
11.2.2实体对象查询236
实例:通过from子句查询实体
实例:查询Employee对象中的所有信息
11.2.3条件查询238
实例:查询性别都为“男”的员工
11.2.4HQL参数绑定机制238
实例:使用动态参数查询性别为“男”的员工信息
11.2.5排序查询239
实例:按照ID的正序序排列
11.2.6聚合函数的应用239
实例:计算所有的员工ID的平均值
实例:查询所有员工中ID最小的员工信息
11.2.7分组方法239
实例:分组统计男女员工的人数。
11.2.8联合查询240
实例:左连接查询获取公民信息和其关联的身份证信息。
11.2.9子查询241
实例:利用子查询获取ID值最小的员工信息
小结242
上机指导242
习题243
第12章Spring框架244
12.1Spring概述245
12.1.1Spring组成245
12.1.2下载Spring246
12.1.3配置Spring246
12.1.4使用BeanFactory管理Bean248
12.1.5应用ApllicationContext249
12.2Spring IoC249
12.2.1控制反转与依赖注入249
12.2.2配置Bean250
12.2.3Setter注入251
实例:通过注入创建用户实例
12.2.4构造器注入252
实例:通过构造器注入为用户JavaBean属性赋值
12.2.5引用其他Bean253
实例:将User对象注入到Spring的控制器Manager中
12.2.6创建匿名内部JavaBean255
12.3AOP概述255
12.3.1AOP术语255
12.3.2AOP的简单实现257
实例:利用SpringAOP使日志输出与方法分离
12.4Spring的切入点258
12.4.1静态与动态切入点258
12.4.2深入静态切入点259
12.4.3深入切入点底层259
12.4.4Spring中的其他切入点260
12.5Aspect对AOP的支持260
12.5.1Aspect概述260
12.5.2Spring中的Aspect261
12.5.3DefaultPointcutAdvisor切入点配置器261
12.5.4NameMatchMethodPointcutAdvisor切入点配置器262
12.6Spring持久化263
12.6.1DAO模式263
12.6.2Spring的DAO理念263
实例:利用DAO模式向用户表中添加数据
12.6.3事务管理266
实例:实现Spring编程式事务管理
实例:实现Spring声明式事务管理
12.6.4应用JdbcTemplate操作数据库269
实例:利用JdbcTemplate向用户表中添加用户信息
12.6.5与Hibernate整合270
实例:整合Spring与Hibernate在tb_user表中添加信息
12.6.6整合Spring与Hibernate在tb_user表中添加信息271
实例:整合Spring与Hibernate在tb_user表中添加信息
小结273
上机指导273
习题275
第13章Spring与Struts2、Hibernate框架的整合276
13.1框架整合的优势277
13.2SSH2架构分析277
13.3开始构建SSH2278
13.3.1配置web.xml278
13.3.2配置Spring279
13.3.3配置Struts 2280
13.3.4配置Hibernate284
实例:搭建天下淘商城项目框架
13.4实现MVC编码285
13.4.1JSP完成视图层285
实例:编写天下淘商城的首页JSP文件
13.4.2Struts 2完成控制层288
实例:编写天下淘商城的首页Action文件
13.4.3Hibernate完成数据封装292
实例:编写天下淘商城的会员信息的实体类及映射文件
13.5SSH2实例程序部署295
小结297
上机指导297
习题303
第四篇综合案例
第14章天下淘网络商城305
14.1开发背景306
14.2系统分析306
14.2.1需求分析306
14.2.2可行性分析306
14.3系统设计307
14.3.1功能结构图307
14.3.2系统流程图308
14.3.3开发环境308
14.3.4文件夹组织结构309
14.3.5系统预览309
14.4数据库设计311
14.4.1数据库概念设计311
14.4.2创建数据库及数据表312
14.5公共模块的设计314
14.5.1泛型工具类314
14.5.2数据持久化类315
14.5.3分页操作316
14.5.4字符串工具类317
14.5.5实体映射318
14.6登录注册模块设计323
14.6.1模块概述323
14.6.2注册模块的实现323
14.6.3登录模块的实现324
14.7前台商品信息查询模块设计327
14.7.1模块概述327
14.7.2前台商品信息查询模块技术分析327
14.7.3商品搜索的实现328
14.7.4前台商品其他查询的实现329
14.8购物车模块设计331
14.8.1模块概述332
14.8.2购物车模块技术分析332
14.8.3购物车基本功能的实现333
14.8.4订单相关功能的实现335
14.9后台商品管理模块设计338
14.9.1模块概述338
14.9.2后台商品管理338
14.9.3商品管理功能的实现338
14.9.4商品类别管理功能的实现343
14.10后台订单管理模块的设计346
14.10.1模块概述346
14.10.2后台订单管理模块技术分析346
14.10.3后台订单查询的实现347
14.11开发技巧与难点分析349

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book