实例介绍
大四工程实训做的仿小米商城网站,ssm框架写的: a)用户模块: 登录注册:在这个模块下可以实现用户的登录注册邮箱验证等。 个人信息:该模块下可以对个人账户,发货地址,订单和一些基本信息的管理。 b)商品模块 将商品分类展示及分页。 首页商品及商品详情展示。 根据用户需求搜索用户想要的商品。 c)购物车模块 模仿商场的消费模式,将喜欢的商品添加到购物车,购物完毕后一起去结算。 能够对购物车商品的增删改查。 d)订单模块 能够对订单进行查询。 e)在线支付模块 实现与第三方接口的在线支付。
【实例截图】
【核心代码】
xiaomi
└── xiaomi
├── ssm-xiaomi
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── Xiaomi
│ │ │ ├── common
│ │ │ │ ├── BaseResult.java
│ │ │ │ ├── OsResult.java
│ │ │ │ ├── PageInfo.java
│ │ │ │ └── ReturnCode.java
│ │ │ ├── controller
│ │ │ │ ├── CartController.java
│ │ │ │ ├── IndexController.java
│ │ │ │ ├── OrderBuyController.java
│ │ │ │ ├── OrderOpertController.java
│ │ │ │ ├── PageController.java
│ │ │ │ ├── PayController.java
│ │ │ │ ├── ProductController.java
│ │ │ │ ├── SearchController.java
│ │ │ │ ├── UserController.java
│ │ │ │ └── UserInfoController.java
│ │ │ ├── dao
│ │ │ │ ├── impl
│ │ │ │ │ └── SearchImpl.java
│ │ │ │ └── SearchDao.java
│ │ │ ├── interceptor
│ │ │ │ └── LoginInterceptor.java
│ │ │ ├── mapper
│ │ │ │ ├── AddressMapper.java
│ │ │ │ ├── AddressMapper.xml
│ │ │ │ ├── OrderDingdanMapper.java
│ │ │ │ ├── OrderDingdanMapper.xml
│ │ │ │ ├── OrderProductMapper.java
│ │ │ │ ├── OrderProductMapper.xml
│ │ │ │ ├── OrderShipmentMapper.java
│ │ │ │ ├── OrderShipmentMapper.xml
│ │ │ │ ├── OrderStatusMapper.java
│ │ │ │ ├── OrderStatusMapper.xml
│ │ │ │ ├── ProductMapper.java
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ ├── UserMapper.java
│ │ │ │ └── UserMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── AddressExample.java
│ │ │ │ ├── Address.java
│ │ │ │ ├── CartItem.java
│ │ │ │ ├── Cart.java
│ │ │ │ ├── OrderDingdanExample.java
│ │ │ │ ├── OrderDingdan.java
│ │ │ │ ├── OrderProductExample.java
│ │ │ │ ├── OrderProduct.java
│ │ │ │ ├── OrderShipmentExample.java
│ │ │ │ ├── OrderShipment.java
│ │ │ │ ├── OrderStatusExample.java
│ │ │ │ ├── OrderStatus.java
│ │ │ │ ├── OrderVO.java
│ │ │ │ ├── PageBean.java
│ │ │ │ ├── ProductExample.java
│ │ │ │ ├── Product.java
│ │ │ │ ├── UserExample.java
│ │ │ │ └── User.java
│ │ │ ├── service
│ │ │ │ ├── AddressService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AddressServiceImpl.java
│ │ │ │ │ ├── OrderServiceImpl.java
│ │ │ │ │ ├── ProductServiceImpl.java
│ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ ├── OrderService.java
│ │ │ │ ├── ProductService.java
│ │ │ │ └── UserService.java
│ │ │ └── utils
│ │ │ ├── AlipayConfig.java
│ │ │ ├── BaseResult.java
│ │ │ ├── CookieUtils.java
│ │ │ ├── ExceptionUtil.java
│ │ │ ├── GetRandom.java
│ │ │ ├── impl
│ │ │ │ └── JedisClientSingle.java
│ │ │ ├── JedisClient.java
│ │ │ ├── JsonUtils.java
│ │ │ ├── MailUtils.java
│ │ │ ├── OsResult.java
│ │ │ ├── ReturnCode.java
│ │ │ ├── TaotaoResult.java
│ │ │ └── UUIDUtils.java
│ │ ├── resources
│ │ │ ├── mybatis
│ │ │ │ └── SqlMapConfig.xml
│ │ │ ├── resource
│ │ │ │ ├── db.properties
│ │ │ │ └── resource.properties
│ │ │ └── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-jedis.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-solr.xml
│ │ │ ├── applicationContext-trans.xml
│ │ │ └── springmvc.xml
│ │ └── webapp
│ │ ├── index.jsp
│ │ └── WEB-INF
│ │ ├── css
│ │ │ ├── address
│ │ │ │ ├── address.css
│ │ │ │ ├── base.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── layer.css
│ │ │ │ ├── main.css
│ │ │ │ └── select2.css
│ │ │ ├── address.css
│ │ │ ├── base.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── buy-success.css
│ │ │ ├── cart.css
│ │ │ ├── checkout.css
│ │ │ ├── confirm
│ │ │ │ ├── base.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── layer.css
│ │ │ │ └── order-confirm.css
│ │ │ ├── goods-comment.css
│ │ │ ├── goods-detail.css
│ │ │ ├── goods-question.css
│ │ │ ├── index.css
│ │ │ ├── list.css
│ │ │ ├── login.css
│ │ │ ├── main.css
│ │ │ ├── order
│ │ │ │ ├── base.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── layer.css
│ │ │ │ └── main.css
│ │ │ ├── order-confirm.css
│ │ │ ├── orderxiangqing
│ │ │ │ ├── address.css
│ │ │ │ ├── base.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── main.css
│ │ │ │ └── select2.css
│ │ │ ├── personer
│ │ │ │ ├── base.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ └── main.css
│ │ │ ├── style2.css
│ │ │ ├── style.css
│ │ │ └── tianxiexingxi
│ │ │ ├── address.css
│ │ │ ├── base.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── checkout.css
│ │ │ ├── layer.css
│ │ │ ├── select2.css
│ │ │ └── style.css
│ │ ├── image
│ │ │ ├── 5c_80.png
│ │ │ ├── address
│ │ │ │ ├── logo.png
│ │ │ │ ├── v-logo-1.png
│ │ │ │ ├── v-logo-2.png
│ │ │ │ └── v-logo-3.png
│ │ │ ├── banner2.jpg
│ │ │ ├── banner.jpg
│ │ │ ├── compare.jpg
│ │ │ ├── confirm
│ │ │ │ ├── 1471797894441.jpg
│ │ │ │ ├── 1471798318820.png
│ │ │ │ ├── 1471798364441.jpg
│ │ │ │ ├── 1471798388806.jpg
│ │ │ │ ├── 1471798568000.jpg
│ │ │ │ ├── 1471798581451.jpg
│ │ │ │ ├── 1471798587451.jpg
│ │ │ │ ├── 1471798587971.jpg
│ │ │ │ ├── 1471799887971.jpg
│ │ │ │ ├── alipay-0718-1.png
│ │ │ │ ├── cft.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── payOnline_bjnsyh.png
│ │ │ │ ├── payOnline_bjyh.png
│ │ │ │ ├── payOnline_fcyh.png
│ │ │ │ ├── payOnline_gdyh.png
│ │ │ │ ├── payOnline_gfyh.png
│ │ │ │ ├── payOnline_gsyh.png
│ │ │ │ ├── payOnline_hyyh.png
│ │ │ │ ├── payOnline_hzyh.png
│ │ │ │ ├── payOnline_jiangsshuyh.png
│ │ │ │ ├── payOnline_jsyh.png
│ │ │ │ ├── payOnline_jtyh.png
│ │ │ │ ├── payOnline_msyh.png
│ │ │ │ ├── payOnline_nbyh.png
│ │ │ │ ├── payOnline_nyyh.png
│ │ │ │ ├── payOnline_payh.png
│ │ │ │ ├── payOnline_pufa.png
│ │ │ │ ├── payOnline_shncsyyh.png
│ │ │ │ ├── payOnline_shnsyh.png
│ │ │ │ ├── payOnline_shyh.png
│ │ │ │ ├── payOnline_xyyh.png
│ │ │ │ ├── payOnline_youzheng.png
│ │ │ │ ├── payOnline_zgyh.png
│ │ │ │ ├── payOnline_zsyh.png
│ │ │ │ ├── payOnline_zxyh.png
│ │ │ │ ├── unionpay.png
│ │ │ │ ├── v-logo-1.png
│ │ │ │ ├── v-logo-2.png
│ │ │ │ ├── v-logo-3.png
│ │ │ │ └── wechat0715.jpg
│ │ │ ├── ghs.png
│ │ │ ├── gwc_xiaomi6.jpg
│ │ │ ├── hjh_01.gif
│ │ │ ├── hjh_02.gif
│ │ │ ├── hjh_03.gif
│ │ │ ├── hjh_04.gif
│ │ │ ├── hjh_05.gif
│ │ │ ├── hjh_06.gif
│ │ │ ├── hm4-80.jpg
│ │ │ ├── hm4A-80.jpg
│ │ │ ├── hm4x_80.png
│ │ │ ├── hmn4x80.png
│ │ │ ├── hmnote4-80.jpg
│ │ │ ├── hongmi4x.png
│ │ │ ├── hongmin4.png
│ │ │ ├── liebiao_hongmin42.jpg
│ │ │ ├── liebiao_hongmin4_dd.jpg
│ │ │ ├── liebiao_hongmin4.jpg
│ │ │ ├── liebiao_hongmin4x.jpg
│ │ │ ├── liebiao_xiaomi5c.jpg
│ │ │ ├── liebiao_xiaomi5.jpg
│ │ │ ├── liebiao_xiaomi5s.jpg
│ │ │ ├── liebiao_xiaomi6.jpg
│ │ │ ├── liebiao_xiaomimix.jpg
│ │ │ ├── liebiao_xiaomint2.jpg
│ │ │ ├── liulangengduo.png
│ │ │ ├── login_bg.jpg
│ │ │ ├── logo_foot.png
│ │ │ ├── logo_top.png
│ │ │ ├── mimobile.jpg
│ │ │ ├── mistore_logo.png
│ │ │ ├── MIX-80.jpg
│ │ │ ├── order
│ │ │ │ ├── v-logo-1.png
│ │ │ │ ├── v-logo-2.png
│ │ │ │ └── v-logo-3.png
│ │ │ ├── orderxiangqing
│ │ │ │ ├── v-logo-1.png
│ │ │ │ ├── v-logo-2.png
│ │ │ │ └── v-logo-3.png
│ │ │ ├── peijian10.jpg
│ │ │ ├── peijian1.jpg
│ │ │ ├── peijian2.jpg
│ │ │ ├── peijian3.jpg
│ │ │ ├── peijian4.jpg
│ │ │ ├── peijian5.jpg
│ │ │ ├── peijian6.png
│ │ │ ├── peijian7.jpg
│ │ │ ├── peijian8.jpg
│ │ │ ├── peijian9.jpg
│ │ │ ├── personer
│ │ │ │ ├── hhh.gif
│ │ │ │ ├── portal-icon-1.png
│ │ │ │ ├── portal-icon-2.png
│ │ │ │ └── user11.gif
│ │ │ ├── pinghengche.jpg
│ │ │ ├── pinpai1.png
│ │ │ ├── pinpai2.png
│ │ │ ├── pinpai3.png
│ │ │ ├── pinpai4.png
│ │ │ ├── pinpai5.png
│ │ │ ├── tianxiexingxi
│ │ │ │ ├── logo_top.png
│ │ │ │ ├── v-logo-1.png
│ │ │ │ ├── v-logo-2.png
│ │ │ │ ├── v-logo-3.png
│ │ │ │ └── yyymix.gif
│ │ │ ├── xiaomi5.jpg
│ │ │ ├── xm5-80.jpg
│ │ │ ├── xm5S-80.jpg
│ │ │ ├── xm5Splus.jpg
│ │ │ ├── xm6_80.png
│ │ │ ├── xmad_14926862610682_UhkfS.png
│ │ │ ├── xmNOTE2-80.jpg
│ │ │ ├── yanzhengma.jpg
│ │ │ └── yyymix.gif
│ │ ├── js
│ │ │ ├── address
│ │ │ │ ├── address.js
│ │ │ │ ├── area.js
│ │ │ │ ├── base.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-3.2.0.min.js
│ │ │ │ ├── jquery.pager.js
│ │ │ │ ├── jump.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── location.js
│ │ │ │ ├── main.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── select2_locale_zh-CN.js
│ │ │ │ └── zySearch.js
│ │ │ ├── base-v1.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── confirm
│ │ │ │ ├── base.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-3.2.0.min.js
│ │ │ │ ├── jump.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── order.js
│ │ │ │ └── zySearch.js
│ │ │ ├── jquery-1.11.3.min.js
│ │ │ ├── jquery-1.6.4.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── order
│ │ │ │ ├── base.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-3.2.0.min.js
│ │ │ │ ├── jquery.pager.js
│ │ │ │ ├── jump.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── main.js
│ │ │ │ └── zySearch.js
│ │ │ ├── orderxiangqing
│ │ │ │ ├── area.js
│ │ │ │ ├── base.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-3.2.0.min.js
│ │ │ │ ├── jump.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── location.js
│ │ │ │ ├── main.js
│ │ │ │ ├── order.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── select2_locale_zh-CN.js
│ │ │ │ └── zySearch.js
│ │ │ ├── search
│ │ │ │ └── base-v1.js
│ │ │ ├── tianxiexingxi
│ │ │ │ ├── address.js
│ │ │ │ ├── area.js
│ │ │ │ ├── base.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── checkout.js
│ │ │ │ ├── jquery-3.2.0.min.js
│ │ │ │ ├── jump.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── location.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── select2_locale_zh-CN.js
│ │ │ │ └── zySearch.js
│ │ │ └── 个人中心
│ │ │ ├── base.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-3.2.0.min.js
│ │ │ ├── jump.js
│ │ │ ├── main.js
│ │ │ └── zySearch.js
│ │ ├── jsp
│ │ │ ├── address.jsp
│ │ │ ├── alipayerro.jsp
│ │ │ ├── alipaySuccess.jsp
│ │ │ ├── cart1.jsp
│ │ │ ├── cart.jsp
│ │ │ ├── checkOrder.jsp
│ │ │ ├── commons
│ │ │ │ ├── footer.jsp
│ │ │ │ └── header.jsp
│ │ │ ├── confirm.jsp
│ │ │ ├── index.jsp
│ │ │ ├── liebiao.jsp
│ │ │ ├── login.jsp
│ │ │ ├── order.jsp
│ │ │ ├── orderxiangqing.jsp
│ │ │ ├── personerPortal.jsp
│ │ │ ├── productlist.jsp
│ │ │ ├── register.jsp
│ │ │ ├── search.jsp
│ │ │ ├── tianxiexingxi.jsp
│ │ │ └── xiangqing.jsp
│ │ ├── products
│ │ │ ├── 1
│ │ │ │ ├── c_0001.jpg
│ │ │ │ ├── c_0002.jpg
│ │ │ │ ├── c_0003.jpg
│ │ │ │ ├── c_0004.jpg
│ │ │ │ ├── c_0005.jpg
│ │ │ │ ├── c_0006.jpg
│ │ │ │ ├── c_0007.jpg
│ │ │ │ ├── c_0008.jpg
│ │ │ │ ├── c_0009.jpg
│ │ │ │ ├── c_0010.jpg
│ │ │ │ ├── c_0011.jpg
│ │ │ │ ├── c_0012.jpg
│ │ │ │ ├── c_0013.jpg
│ │ │ │ ├── c_0014.jpg
│ │ │ │ ├── c_0015.jpg
│ │ │ │ ├── c_0016.jpg
│ │ │ │ ├── c_0017.jpg
│ │ │ │ ├── c_0018.jpg
│ │ │ │ ├── c_0019.jpg
│ │ │ │ ├── c_0020.jpg
│ │ │ │ ├── c_0021.jpg
│ │ │ │ ├── c_0022.jpg
│ │ │ │ ├── c_0023.jpg
│ │ │ │ ├── c_0024.jpg
│ │ │ │ ├── c_0025.jpg
│ │ │ │ ├── c_0026.jpg
│ │ │ │ ├── c_0027.jpg
│ │ │ │ ├── c_0028.jpg
│ │ │ │ ├── c_0029.jpg
│ │ │ │ ├── c_0030.jpg
│ │ │ │ ├── c_0031.jpg
│ │ │ │ ├── c_0032.jpg
│ │ │ │ ├── c_0033.jpg
│ │ │ │ ├── c_0034.jpg
│ │ │ │ ├── c_0035.jpg
│ │ │ │ ├── c_0036.jpg
│ │ │ │ ├── c_0037.jpg
│ │ │ │ ├── c_0038.jpg
│ │ │ │ ├── c_0039.jpg
│ │ │ │ ├── c_0040.jpg
│ │ │ │ ├── c_0041.jpg
│ │ │ │ ├── c_0042.jpg
│ │ │ │ ├── c_0043.jpg
│ │ │ │ ├── c_0044.jpg
│ │ │ │ ├── c_0045.jpg
│ │ │ │ ├── c_0046.jpg
│ │ │ │ ├── c_0047.jpg
│ │ │ │ ├── c_0048.jpg
│ │ │ │ ├── c_0049.jpg
│ │ │ │ ├── c_0050.jpg
│ │ │ │ ├── cs10001.jpg
│ │ │ │ ├── cs10002.jpg
│ │ │ │ ├── cs10003.jpg
│ │ │ │ ├── cs10004.jpg
│ │ │ │ ├── cs10005.jpg
│ │ │ │ ├── cs10006.jpg
│ │ │ │ ├── cs10007.jpg
│ │ │ │ ├── cs10008.jpg
│ │ │ │ ├── cs10009.jpg
│ │ │ │ ├── cs10010.jpg
│ │ │ │ ├── cs20001.jpg
│ │ │ │ ├── cs20002.jpg
│ │ │ │ ├── cs20003.jpg
│ │ │ │ ├── cs20004.jpg
│ │ │ │ ├── cs20005.jpg
│ │ │ │ ├── cs20006.jpg
│ │ │ │ ├── cs20007.jpg
│ │ │ │ ├── cs20008.jpg
│ │ │ │ ├── cs20009.jpg
│ │ │ │ ├── cs20010.jpg
│ │ │ │ ├── cs30001.png
│ │ │ │ ├── cs30002.png
│ │ │ │ ├── cs30003.png
│ │ │ │ ├── cs30004.png
│ │ │ │ ├── cs30005.png
│ │ │ │ ├── cs30006.png
│ │ │ │ ├── cs30007.png
│ │ │ │ ├── cs30008.png
│ │ │ │ ├── cs30009.png
│ │ │ │ ├── cs30010.png
│ │ │ │ ├── cs40001.png
│ │ │ │ ├── cs40002.png
│ │ │ │ ├── cs40003.png
│ │ │ │ ├── cs40004.jpg
│ │ │ │ ├── cs40005.png
│ │ │ │ ├── cs40006.png
│ │ │ │ ├── cs40007.png
│ │ │ │ ├── cs40008.png
│ │ │ │ ├── cs40009.png
│ │ │ │ ├── cs40010.png
│ │ │ │ ├── cs40011.png
│ │ │ │ ├── cs50001.png
│ │ │ │ ├── cs50002.png
│ │ │ │ ├── cs50003.png
│ │ │ │ ├── cs50004.png
│ │ │ │ ├── cs50005.png
│ │ │ │ ├── cs50006.png
│ │ │ │ ├── cs50007.png
│ │ │ │ ├── cs50008.png
│ │ │ │ ├── cs50009.png
│ │ │ │ ├── cs50010.png
│ │ │ │ ├── cs60001.png
│ │ │ │ ├── cs60002.png
│ │ │ │ ├── cs60003.png
│ │ │ │ ├── cs60004.png
│ │ │ │ ├── cs60005.png
│ │ │ │ ├── cs60006.png
│ │ │ │ ├── cs60007.png
│ │ │ │ ├── cs60008.png
│ │ │ │ ├── cs60009.png
│ │ │ │ ├── cs60010.png
│ │ │ │ ├── cs70001.png
│ │ │ │ ├── cs70002.png
│ │ │ │ ├── cs70003.png
│ │ │ │ ├── cs70004.png
│ │ │ │ ├── cs70005.png
│ │ │ │ ├── cs70006.png
│ │ │ │ ├── cs70007.png
│ │ │ │ ├── cs70008.png
│ │ │ │ ├── cs70009.png
│ │ │ │ ├── cs70010.png
│ │ │ │ ├── duanxue1.png
│ │ │ │ ├── duanxue2.png
│ │ │ │ ├── duanxue3.png
│ │ │ │ ├── duanxue4.png
│ │ │ │ └── nvxie.jpg
│ │ │ ├── 155210007679548_y.jpg
│ │ │ ├── 562d008aN963ce5f2.jpg
│ │ │ ├── 5632bdf8N789e6659.jpg
│ │ │ ├── 5632c2eeNbc918af0.jpg
│ │ │ ├── 90560009093007_y.jpg
│ │ │ ├── c_0001.jpg
│ │ │ ├── c_0002.jpg
│ │ │ ├── c_0003.jpg
│ │ │ ├── c_0004.jpg
│ │ │ ├── c_0005.jpg
│ │ │ ├── c_0006.jpg
│ │ │ ├── c_0007.jpg
│ │ │ ├── dn1.jpg
│ │ │ ├── dn2.jpg
│ │ │ ├── f001a62f-a49d-4a4d-b56f-2b6908a0002c_g.jpg
│ │ │ ├── hao
│ │ │ │ ├── ad.jpg
│ │ │ │ ├── big01.jpg
│ │ │ │ ├── middle01.jpg
│ │ │ │ ├── small01.jpg
│ │ │ │ ├── small02.jpg
│ │ │ │ ├── small03.jpg
│ │ │ │ ├── small04.jpg
│ │ │ │ ├── small05.jpg
│ │ │ │ ├── small06.jpg
│ │ │ │ ├── small07.jpg
│ │ │ │ ├── small08.jpg
│ │ │ │ └── small09.jpg
│ │ │ ├── news_left.jpg
│ │ │ └── news_right.jpg
│ │ └── web.xml
│ └── target
│ ├── classes
│ │ ├── com
│ │ │ └── Xiaomi
│ │ │ ├── common
│ │ │ │ ├── BaseResult.class
│ │ │ │ ├── OsResult.class
│ │ │ │ ├── PageInfo.class
│ │ │ │ └── ReturnCode.class
│ │ │ ├── controller
│ │ │ │ ├── CartController.class
│ │ │ │ ├── IndexController.class
│ │ │ │ ├── OrderBuyController.class
│ │ │ │ ├── OrderOpertController.class
│ │ │ │ ├── PageController.class
│ │ │ │ ├── PayController.class
│ │ │ │ ├── ProductController.class
│ │ │ │ ├── SearchController.class
│ │ │ │ ├── UserController.class
│ │ │ │ └── UserInfoController.class
│ │ │ ├── dao
│ │ │ │ ├── impl
│ │ │ │ │ └── SearchImpl.class
│ │ │ │ └── SearchDao.class
│ │ │ ├── interceptor
│ │ │ │ └── LoginInterceptor.class
│ │ │ ├── mapper
│ │ │ │ ├── AddressMapper.class
│ │ │ │ ├── AddressMapper.xml
│ │ │ │ ├── OrderDingdanMapper.class
│ │ │ │ ├── OrderDingdanMapper.xml
│ │ │ │ ├── OrderProductMapper.class
│ │ │ │ ├── OrderProductMapper.xml
│ │ │ │ ├── OrderShipmentMapper.class
│ │ │ │ ├── OrderShipmentMapper.xml
│ │ │ │ ├── OrderStatusMapper.class
│ │ │ │ ├── OrderStatusMapper.xml
│ │ │ │ ├── ProductMapper.class
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ ├── UserMapper.class
│ │ │ │ └── UserMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── Address.class
│ │ │ │ ├── AddressExample$Criteria.class
│ │ │ │ ├── AddressExample$Criterion.class
│ │ │ │ ├── AddressExample$GeneratedCriteria.class
│ │ │ │ ├── AddressExample.class
│ │ │ │ ├── Cart.class
│ │ │ │ ├── CartItem.class
│ │ │ │ ├── OrderDingdan.class
│ │ │ │ ├── OrderDingdanExample$Criteria.class
│ │ │ │ ├── OrderDingdanExample$Criterion.class
│ │ │ │ ├── OrderDingdanExample$GeneratedCriteria.class
│ │ │ │ ├── OrderDingdanExample.class
│ │ │ │ ├── OrderProduct.class
│ │ │ │ ├── OrderProductExample$Criteria.class
│ │ │ │ ├── OrderProductExample$Criterion.class
│ │ │ │ ├── OrderProductExample$GeneratedCriteria.class
│ │ │ │ ├── OrderProductExample.class
│ │ │ │ ├── OrderShipment.class
│ │ │ │ ├── OrderShipmentExample$Criteria.class
│ │ │ │ ├── OrderShipmentExample$Criterion.class
│ │ │ │ ├── OrderShipmentExample$GeneratedCriteria.class
│ │ │ │ ├── OrderShipmentExample.class
│ │ │ │ ├── OrderStatus.class
│ │ │ │ ├── OrderStatusExample$Criteria.class
│ │ │ │ ├── OrderStatusExample$Criterion.class
│ │ │ │ ├── OrderStatusExample$GeneratedCriteria.class
│ │ │ │ ├── OrderStatusExample.class
│ │ │ │ ├── OrderVO.class
│ │ │ │ ├── PageBean.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── ProductExample$Criteria.class
│ │ │ │ ├── ProductExample$Criterion.class
│ │ │ │ ├── ProductExample$GeneratedCriteria.class
│ │ │ │ ├── ProductExample.class
│ │ │ │ ├── User.class
│ │ │ │ ├── UserExample$Criteria.class
│ │ │ │ ├── UserExample$Criterion.class
│ │ │ │ ├── UserExample$GeneratedCriteria.class
│ │ │ │ └── UserExample.class
│ │ │ ├── service
│ │ │ │ ├── AddressService.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── AddressServiceImpl.class
│ │ │ │ │ ├── OrderServiceImpl.class
│ │ │ │ │ ├── ProductServiceImpl.class
│ │ │ │ │ └── UserServiceImpl.class
│ │ │ │ ├── OrderService.class
│ │ │ │ ├── ProductService.class
│ │ │ │ └── UserService.class
│ │ │ └── utils
│ │ │ ├── AlipayConfig.class
│ │ │ ├── BaseResult.class
│ │ │ ├── CookieUtils.class
│ │ │ ├── ExceptionUtil.class
│ │ │ ├── GetRandom.class
│ │ │ ├── impl
│ │ │ │ └── JedisClientSingle.class
│ │ │ ├── JedisClient.class
│ │ │ ├── JsonUtils.class
│ │ │ ├── MailUtils$1.class
│ │ │ ├── MailUtils.class
│ │ │ ├── OsResult.class
│ │ │ ├── ReturnCode.class
│ │ │ ├── TaotaoResult.class
│ │ │ └── UUIDUtils.class
│ │ ├── mybatis
│ │ │ └── SqlMapConfig.xml
│ │ ├── resource
│ │ │ ├── db.properties
│ │ │ └── resource.properties
│ │ └── spring
│ │ ├── applicationContext-dao.xml
│ │ ├── applicationContext-jedis.xml
│ │ ├── applicationContext-service.xml
│ │ ├── applicationContext-solr.xml
│ │ ├── applicationContext-trans.xml
│ │ └── springmvc.xml
│ └── m2e-wtp
│ └── web-resources
│ └── META-INF
│ ├── MANIFEST.MF
│ └── maven
│ └── com
│ └── ssm-xiaomi
│ ├── pom.properties
│ └── pom.xml
├── SSM框架.pptx
├── taobao.sql
├── 专业工程综合实训任务书.doc
├── 专业工程综合实训设计报告.doc
└── 工程实训ppt.pptx
75 directories, 596 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)