实例介绍
压缩包里面有:整个项目系统、数据库、成果书(论文)、任务书 仿天猫商城系统设计与实现主要完成的功能: 1.商品模块:普通用户商品的浏览,管理员对商品的管理。 2.购物车模块:购物车的添加修改。 3.订单模块:订单的生成,历史订单的查看。 4.评价模块:用户对商品后买后的评价。 5.用户模块:用户的权限鉴别 。
【实例截图】
【核心代码】
16359647317168489936.zip
├── S-mall
│ ├── S-mall.sql
│ └── S-mall-ssm
│ ├── pom.xml
│ ├── small.sql
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── tmall
│ │ │ ├── annotation
│ │ │ │ ├── Auth.java
│ │ │ │ ├── Nullable.java
│ │ │ │ └── ORMAnnotation
│ │ │ │ ├── Enumerated.java
│ │ │ │ ├── JoinColumn.java
│ │ │ │ ├── ManyToOne.java
│ │ │ │ └── OneToMany.java
│ │ │ ├── aspect
│ │ │ │ └── VerificationAspect.java
│ │ │ ├── controller
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminBaseController.java
│ │ │ │ │ ├── CategoryController.java
│ │ │ │ │ ├── ConfigController.java
│ │ │ │ │ ├── OrderController.java
│ │ │ │ │ ├── ProductController.java
│ │ │ │ │ ├── ProductImageController.java
│ │ │ │ │ ├── PropertyController.java
│ │ │ │ │ ├── PropertyValueController.java
│ │ │ │ │ ├── RootController.java
│ │ │ │ │ └── UserController.java
│ │ │ │ ├── BaseController.java
│ │ │ │ └── front
│ │ │ │ ├── FrontBaseController.java
│ │ │ │ ├── OrderFrontController.java
│ │ │ │ ├── ShowController.java
│ │ │ │ └── UserFrontController.java
│ │ │ ├── exception
│ │ │ │ ├── AuthException.java
│ │ │ │ └── ParameterException.java
│ │ │ ├── interceptor
│ │ │ │ ├── AuthInterceptor.java
│ │ │ │ ├── CategoryNamesBelowSearchInterceptor.java
│ │ │ │ └── ConfigInterceptor.java
│ │ │ ├── mapper
│ │ │ │ ├── BaseMapper.java
│ │ │ │ ├── CartItemMapper.java
│ │ │ │ ├── CartItemMapper.xml
│ │ │ │ ├── CategoryMapper.java
│ │ │ │ ├── CategoryMapper.xml
│ │ │ │ ├── CommentMapper.java
│ │ │ │ ├── CommentMapper.xml
│ │ │ │ ├── ConfigMapper.java
│ │ │ │ ├── ConfigMapper.xml
│ │ │ │ ├── OrderItemMapper.java
│ │ │ │ ├── OrderItemMapper.xml
│ │ │ │ ├── OrderMapper.java
│ │ │ │ ├── OrderMapper.xml
│ │ │ │ ├── ORM
│ │ │ │ │ ├── Mapper4ORM.java
│ │ │ │ │ ├── MapperFactory.java
│ │ │ │ │ └── Mapper.java
│ │ │ │ ├── ProductImageMapper.java
│ │ │ │ ├── ProductImageMapper.xml
│ │ │ │ ├── ProductMapper.java
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ ├── PropertyMapper.java
│ │ │ │ ├── PropertyMapper.xml
│ │ │ │ ├── PropertyValueMapper.java
│ │ │ │ ├── PropertyValueMapper.xml
│ │ │ │ ├── UserMapper.java
│ │ │ │ └── UserMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── base
│ │ │ │ │ ├── BaseExample.java
│ │ │ │ │ └── BasePOJO.java
│ │ │ │ ├── CartItemExample.java
│ │ │ │ ├── CartItem.java
│ │ │ │ ├── CategoryExample.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── CommentExample.java
│ │ │ │ ├── Comment.java
│ │ │ │ ├── ConfigExample.java
│ │ │ │ ├── Config.java
│ │ │ │ ├── extension
│ │ │ │ │ ├── CartItemExtension.java
│ │ │ │ │ ├── CategoryExtension.java
│ │ │ │ │ ├── CommentExtension.java
│ │ │ │ │ ├── ConfigExtension.java
│ │ │ │ │ ├── OrderExtension.java
│ │ │ │ │ ├── OrderItemExtension.java
│ │ │ │ │ ├── ProductExtension.java
│ │ │ │ │ ├── ProductImageExtension.java
│ │ │ │ │ ├── PropertyExtension.java
│ │ │ │ │ ├── PropertyValueExtension.java
│ │ │ │ │ └── UserExtension.java
│ │ │ │ ├── OrderExample.java
│ │ │ │ ├── OrderItemExample.java
│ │ │ │ ├── OrderItem.java
│ │ │ │ ├── Order.java
│ │ │ │ ├── ORM
│ │ │ │ │ └── POJOMapper.java
│ │ │ │ ├── ProductExample.java
│ │ │ │ ├── ProductImageExample.java
│ │ │ │ ├── ProductImage.java
│ │ │ │ ├── Product.java
│ │ │ │ ├── PropertyExample.java
│ │ │ │ ├── Property.java
│ │ │ │ ├── PropertyValueExample.java
│ │ │ │ ├── PropertyValue.java
│ │ │ │ ├── UserExample.java
│ │ │ │ └── User.java
│ │ │ ├── service
│ │ │ │ ├── BaseService.java
│ │ │ │ ├── CartItemService.java
│ │ │ │ ├── CategoryService.java
│ │ │ │ ├── CommentService.java
│ │ │ │ ├── ConfigService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── BaseServiceImpl.java
│ │ │ │ │ ├── CartItemServiceImpl.java
│ │ │ │ │ ├── CategoryServiceImpl.java
│ │ │ │ │ ├── CommentServiceImpl.java
│ │ │ │ │ ├── ConfigServiceImpl.java
│ │ │ │ │ ├── OrderItemServiceImpl.java
│ │ │ │ │ ├── OrderServiceImpl.java
│ │ │ │ │ ├── ProductImageServiceImpl.java
│ │ │ │ │ ├── ProductServiceImpl.java
│ │ │ │ │ ├── PropertyServiceImpl.java
│ │ │ │ │ ├── PropertyValueServiceImpl.java
│ │ │ │ │ ├── Service4DAOImpl.java
│ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ ├── OrderItemService.java
│ │ │ │ ├── OrderService.java
│ │ │ │ ├── ProductImageService.java
│ │ │ │ ├── ProductService.java
│ │ │ │ ├── PropertyService.java
│ │ │ │ ├── PropertyValueService.java
│ │ │ │ ├── Service4DAO.java
│ │ │ │ └── UserService.java
│ │ │ ├── test
│ │ │ │ └── ProductTest.java
│ │ │ └── util
│ │ │ ├── FileUtil.java
│ │ │ ├── MBGPlugins
│ │ │ │ ├── DeleteAtPlugin.java
│ │ │ │ ├── ExampleExtendsPlugin.java
│ │ │ │ ├── MapperExtendsPlugin.java
│ │ │ │ └── POJOExtendsPlugin.java
│ │ │ ├── MybatisGenerator.java
│ │ │ ├── Pagination.java
│ │ │ ├── PasswordUtil.java
│ │ │ └── UploadedImageFile.java
│ │ ├── resources
│ │ │ ├── applicationContext.xml
│ │ │ ├── generatorConfig.xml
│ │ │ ├── jdbc.properties
│ │ │ ├── log4j2.xml
│ │ │ ├── mybatis-config.xml
│ │ │ └── springMVC.xml
│ │ └── webapp
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ └── style.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 7day.png
│ │ │ ├── alipay.png
│ │ │ ├── baozhang.png
│ │ │ ├── buyflow_1.png
│ │ │ ├── buyflow_3.png
│ │ │ ├── chaoshi.png
│ │ │ ├── creditcard.png
│ │ │ ├── decrease.png
│ │ │ ├── end.png
│ │ │ ├── ensure.jpg
│ │ │ ├── gouwu.png
│ │ │ ├── guoji.png
│ │ │ ├── increase.png
│ │ │ ├── login.png
│ │ │ ├── logo2.png
│ │ │ ├── logo.png
│ │ │ ├── logo_small.png
│ │ │ ├── maotou.png
│ │ │ ├── noselect.png
│ │ │ ├── order_finish.png
│ │ │ ├── pay_success.png
│ │ │ ├── product_back.png
│ │ │ ├── promise.png
│ │ │ ├── review_light.png
│ │ │ ├── select.png
│ │ │ ├── shouji.png
│ │ │ ├── tmall-small.png
│ │ │ ├── wangwang.gif
│ │ │ ├── wangwang.png
│ │ │ └── warning.png
│ │ ├── js
│ │ │ ├── admin.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── cart.js
│ │ │ ├── index.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ ├── product.js
│ │ │ └── search.js
│ │ ├── pictures
│ │ │ ├── category
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ └── 5.jpg
│ │ │ └── product
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 22.jpg
│ │ │ ├── 23.jpg
│ │ │ ├── 24.jpg
│ │ │ ├── 25.jpg
│ │ │ ├── 26.jpg
│ │ │ ├── 27.jpg
│ │ │ ├── 28.jpg
│ │ │ ├── 29.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 30.jpg
│ │ │ ├── 31.jpg
│ │ │ ├── 32.jpg
│ │ │ ├── 33.jpg
│ │ │ ├── 34.jpg
│ │ │ ├── 35.jpg
│ │ │ ├── 36.jpg
│ │ │ ├── 37.jpg
│ │ │ ├── 38.jpg
│ │ │ ├── 39.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 40.jpg
│ │ │ ├── 41.jpg
│ │ │ ├── 42.jpg
│ │ │ ├── 43.jpg
│ │ │ ├── 44.jpg
│ │ │ ├── 45.jpg
│ │ │ ├── 46.jpg
│ │ │ ├── 47.jpg
│ │ │ ├── 48.jpg
│ │ │ ├── 49.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 50.jpg
│ │ │ ├── 51.jpg
│ │ │ ├── 52.jpg
│ │ │ ├── 53.jpg
│ │ │ ├── 54.jpg
│ │ │ ├── 55.jpg
│ │ │ ├── 56.jpg
│ │ │ ├── 57.jpg
│ │ │ ├── 58.jpg
│ │ │ ├── 59.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ └── WEB-INF
│ │ ├── jsp
│ │ │ ├── 500.jsp
│ │ │ ├── admin
│ │ │ │ ├── common
│ │ │ │ │ ├── adminFooter.jsp
│ │ │ │ │ ├── adminHeader.jsp
│ │ │ │ │ ├── adminNavigator.jsp
│ │ │ │ │ └── adminPage.jsp
│ │ │ │ ├── editCategory.jsp
│ │ │ │ ├── editConfig.jsp
│ │ │ │ ├── editProduct.jsp
│ │ │ │ ├── editProperty.jsp
│ │ │ │ ├── editPropertyValue.jsp
│ │ │ │ ├── listCategory.jsp
│ │ │ │ ├── listOrder.jsp
│ │ │ │ ├── listProductImage.jsp
│ │ │ │ ├── listProduct.jsp
│ │ │ │ ├── listProperties.jsp
│ │ │ │ └── listUser.jsp
│ │ │ ├── buy.jsp
│ │ │ ├── cart.jsp
│ │ │ ├── category.jsp
│ │ │ ├── comment.jsp
│ │ │ ├── confirmed.jsp
│ │ │ ├── confirmPay.jsp
│ │ │ ├── home.jsp
│ │ │ ├── include
│ │ │ │ ├── buy
│ │ │ │ │ ├── buyHeader.jsp
│ │ │ │ │ ├── buyPage.jsp
│ │ │ │ │ └── cartPage.jsp
│ │ │ │ ├── category
│ │ │ │ │ ├── categoryPage.jsp
│ │ │ │ │ ├── commonPage.jsp
│ │ │ │ │ └── searchPage.jsp
│ │ │ │ ├── footer.jsp
│ │ │ │ ├── header.jsp
│ │ │ │ ├── home
│ │ │ │ │ ├── homeBottom.jsp
│ │ │ │ │ ├── homeCenter.jsp
│ │ │ │ │ └── homeSearch.jsp
│ │ │ │ ├── login
│ │ │ │ │ ├── loginFooter.jsp
│ │ │ │ │ ├── loginPage.jsp
│ │ │ │ │ ├── registerPage.jsp
│ │ │ │ │ └── registerSuccessPage.jsp
│ │ │ │ ├── logoBar.jsp
│ │ │ │ ├── order
│ │ │ │ │ ├── commentPage.jsp
│ │ │ │ │ ├── confirmedPage.jsp
│ │ │ │ │ ├── confirmPayPage.jsp
│ │ │ │ │ ├── myOrderPage.jsp
│ │ │ │ │ ├── payedPage.jsp
│ │ │ │ │ └── payPage.jsp
│ │ │ │ ├── product
│ │ │ │ │ ├── productBottom.jsp
│ │ │ │ │ ├── productCenter.jsp
│ │ │ │ │ └── productTop.jsp
│ │ │ │ ├── search.jsp
│ │ │ │ ├── simpleSearch.jsp
│ │ │ │ └── top.jsp
│ │ │ ├── login.jsp
│ │ │ ├── msg.jsp
│ │ │ ├── myOrder.jsp
│ │ │ ├── payed.jsp
│ │ │ ├── pay.jsp
│ │ │ ├── product.jsp
│ │ │ ├── register.jsp
│ │ │ ├── registerSuccess.jsp
│ │ │ └── search.jsp
│ │ └── web.xml
│ ├── target
│ │ ├── apache-tomcat-maven-plugin
│ │ ├── classes
│ │ │ ├── applicationContext.xml
│ │ │ ├── generatorConfig.xml
│ │ │ ├── jdbc.properties
│ │ │ ├── log4j2.xml
│ │ │ ├── mybatis-config.xml
│ │ │ ├── springMVC.xml
│ │ │ └── tmall
│ │ │ ├── annotation
│ │ │ │ ├── Auth.class
│ │ │ │ ├── Nullable.class
│ │ │ │ └── ORMAnnotation
│ │ │ │ ├── Enumerated.class
│ │ │ │ ├── JoinColumn.class
│ │ │ │ ├── ManyToOne.class
│ │ │ │ └── OneToMany.class
│ │ │ ├── aspect
│ │ │ │ └── VerificationAspect.class
│ │ │ ├── controller
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminBaseController.class
│ │ │ │ │ ├── CategoryController.class
│ │ │ │ │ ├── ConfigController.class
│ │ │ │ │ ├── OrderController.class
│ │ │ │ │ ├── ProductController.class
│ │ │ │ │ ├── ProductImageController.class
│ │ │ │ │ ├── PropertyController.class
│ │ │ │ │ ├── PropertyValueController.class
│ │ │ │ │ ├── RootController.class
│ │ │ │ │ └── UserController.class
│ │ │ │ ├── BaseController.class
│ │ │ │ └── front
│ │ │ │ ├── FrontBaseController.class
│ │ │ │ ├── OrderFrontController.class
│ │ │ │ ├── ShowController.class
│ │ │ │ └── UserFrontController.class
│ │ │ ├── exception
│ │ │ │ ├── AuthException.class
│ │ │ │ └── ParameterException.class
│ │ │ ├── interceptor
│ │ │ │ ├── AuthInterceptor.class
│ │ │ │ ├── CategoryNamesBelowSearchInterceptor.class
│ │ │ │ └── ConfigInterceptor.class
│ │ │ ├── mapper
│ │ │ │ ├── BaseMapper.class
│ │ │ │ ├── CartItemMapper.class
│ │ │ │ ├── CartItemMapper.xml
│ │ │ │ ├── CategoryMapper.class
│ │ │ │ ├── CategoryMapper.xml
│ │ │ │ ├── CommentMapper.class
│ │ │ │ ├── CommentMapper.xml
│ │ │ │ ├── ConfigMapper.class
│ │ │ │ ├── ConfigMapper.xml
│ │ │ │ ├── OrderItemMapper.class
│ │ │ │ ├── OrderItemMapper.xml
│ │ │ │ ├── OrderMapper.class
│ │ │ │ ├── OrderMapper.xml
│ │ │ │ ├── ORM
│ │ │ │ │ ├── Mapper4ORM.class
│ │ │ │ │ ├── Mapper.class
│ │ │ │ │ └── MapperFactory.class
│ │ │ │ ├── ProductImageMapper.class
│ │ │ │ ├── ProductImageMapper.xml
│ │ │ │ ├── ProductMapper.class
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ ├── PropertyMapper.class
│ │ │ │ ├── PropertyMapper.xml
│ │ │ │ ├── PropertyValueMapper.class
│ │ │ │ ├── PropertyValueMapper.xml
│ │ │ │ ├── UserMapper.class
│ │ │ │ └── UserMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── base
│ │ │ │ │ ├── BaseExample.class
│ │ │ │ │ └── BasePOJO.class
│ │ │ │ ├── CartItem.class
│ │ │ │ ├── CartItemExample$Criteria.class
│ │ │ │ ├── CartItemExample$Criterion.class
│ │ │ │ ├── CartItemExample$GeneratedCriteria.class
│ │ │ │ ├── CartItemExample.class
│ │ │ │ ├── Category.class
│ │ │ │ ├── CategoryExample$Criteria.class
│ │ │ │ ├── CategoryExample$Criterion.class
│ │ │ │ ├── CategoryExample$GeneratedCriteria.class
│ │ │ │ ├── CategoryExample.class
│ │ │ │ ├── Comment.class
│ │ │ │ ├── CommentExample$Criteria.class
│ │ │ │ ├── CommentExample$Criterion.class
│ │ │ │ ├── CommentExample$GeneratedCriteria.class
│ │ │ │ ├── CommentExample.class
│ │ │ │ ├── Config.class
│ │ │ │ ├── ConfigExample$Criteria.class
│ │ │ │ ├── ConfigExample$Criterion.class
│ │ │ │ ├── ConfigExample$GeneratedCriteria.class
│ │ │ │ ├── ConfigExample.class
│ │ │ │ ├── extension
│ │ │ │ │ ├── CartItemExtension.class
│ │ │ │ │ ├── CategoryExtension.class
│ │ │ │ │ ├── CommentExtension.class
│ │ │ │ │ ├── ConfigExtension.class
│ │ │ │ │ ├── OrderExtension$Status.class
│ │ │ │ │ ├── OrderExtension.class
│ │ │ │ │ ├── OrderItemExtension.class
│ │ │ │ │ ├── ProductExtension.class
│ │ │ │ │ ├── ProductImageExtension$Type.class
│ │ │ │ │ ├── ProductImageExtension.class
│ │ │ │ │ ├── PropertyExtension.class
│ │ │ │ │ ├── PropertyValueExtension.class
│ │ │ │ │ ├── UserExtension$Group.class
│ │ │ │ │ └── UserExtension.class
│ │ │ │ ├── Order.class
│ │ │ │ ├── OrderExample$Criteria.class
│ │ │ │ ├── OrderExample$Criterion.class
│ │ │ │ ├── OrderExample$GeneratedCriteria.class
│ │ │ │ ├── OrderExample.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── OrderItemExample$Criteria.class
│ │ │ │ ├── OrderItemExample$Criterion.class
│ │ │ │ ├── OrderItemExample$GeneratedCriteria.class
│ │ │ │ ├── OrderItemExample.class
│ │ │ │ ├── ORM
│ │ │ │ │ └── POJOMapper.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── ProductExample$Criteria.class
│ │ │ │ ├── ProductExample$Criterion.class
│ │ │ │ ├── ProductExample$GeneratedCriteria.class
│ │ │ │ ├── ProductExample.class
│ │ │ │ ├── ProductImage.class
│ │ │ │ ├── ProductImageExample$Criteria.class
│ │ │ │ ├── ProductImageExample$Criterion.class
│ │ │ │ ├── ProductImageExample$GeneratedCriteria.class
│ │ │ │ ├── ProductImageExample.class
│ │ │ │ ├── Property.class
│ │ │ │ ├── PropertyExample$Criteria.class
│ │ │ │ ├── PropertyExample$Criterion.class
│ │ │ │ ├── PropertyExample$GeneratedCriteria.class
│ │ │ │ ├── PropertyExample.class
│ │ │ │ ├── PropertyValue.class
│ │ │ │ ├── PropertyValueExample$Criteria.class
│ │ │ │ ├── PropertyValueExample$Criterion.class
│ │ │ │ ├── PropertyValueExample$GeneratedCriteria.class
│ │ │ │ ├── PropertyValueExample.class
│ │ │ │ ├── User.class
│ │ │ │ ├── UserExample$Criteria.class
│ │ │ │ ├── UserExample$Criterion.class
│ │ │ │ ├── UserExample$GeneratedCriteria.class
│ │ │ │ └── UserExample.class
│ │ │ ├── service
│ │ │ │ ├── BaseService.class
│ │ │ │ ├── CartItemService.class
│ │ │ │ ├── CategoryService.class
│ │ │ │ ├── CommentService.class
│ │ │ │ ├── ConfigService.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── BaseServiceImpl.class
│ │ │ │ │ ├── CartItemServiceImpl.class
│ │ │ │ │ ├── CategoryServiceImpl.class
│ │ │ │ │ ├── CommentServiceImpl.class
│ │ │ │ │ ├── ConfigServiceImpl.class
│ │ │ │ │ ├── OrderItemServiceImpl.class
│ │ │ │ │ ├── OrderServiceImpl.class
│ │ │ │ │ ├── ProductImageServiceImpl.class
│ │ │ │ │ ├── ProductServiceImpl.class
│ │ │ │ │ ├── PropertyServiceImpl.class
│ │ │ │ │ ├── PropertyValueServiceImpl.class
│ │ │ │ │ ├── Service4DAOImpl.class
│ │ │ │ │ └── UserServiceImpl.class
│ │ │ │ ├── OrderItemService.class
│ │ │ │ ├── OrderService.class
│ │ │ │ ├── ProductImageService.class
│ │ │ │ ├── ProductService.class
│ │ │ │ ├── PropertyService.class
│ │ │ │ ├── PropertyValueService.class
│ │ │ │ ├── Service4DAO.class
│ │ │ │ └── UserService.class
│ │ │ ├── test
│ │ │ │ └── ProductTest.class
│ │ │ └── util
│ │ │ ├── FileUtil.class
│ │ │ ├── MBGPlugins
│ │ │ │ ├── DeleteAtPlugin.class
│ │ │ │ ├── ExampleExtendsPlugin.class
│ │ │ │ ├── MapperExtendsPlugin.class
│ │ │ │ └── POJOExtendsPlugin.class
│ │ │ ├── MybatisGenerator.class
│ │ │ ├── Pagination.class
│ │ │ ├── PasswordUtil.class
│ │ │ └── UploadedImageFile.class
│ │ ├── generated-sources
│ │ │ └── annotations
│ │ ├── maven-status
│ │ │ └── maven-compiler-plugin
│ │ │ └── compile
│ │ │ └── default-compile
│ │ │ ├── createdFiles.lst
│ │ │ └── inputFiles.lst
│ │ └── tomcat
│ │ ├── conf
│ │ │ ├── logging.properties
│ │ │ ├── tomcat-users.xml
│ │ │ └── web.xml
│ │ ├── logs
│ │ │ ├── access_log.2018-11-01
│ │ │ ├── access_log.2018-11-05
│ │ │ ├── access_log.2018-11-06
│ │ │ ├── access_log.2018-11-07
│ │ │ └── access_log.2018-11-09
│ │ ├── webapps
│ │ └── work
│ │ └── Tomcat
│ │ └── localhost
│ │ └── _
│ │ └── org
│ │ └── apache
│ │ └── jsp
│ │ └── WEB_002dINF
│ │ └── jsp
│ │ ├── _500_jsp.class
│ │ ├── _500_jsp.java
│ │ ├── admin
│ │ │ ├── editCategory_jsp.class
│ │ │ ├── editCategory_jsp.java
│ │ │ ├── editConfig_jsp.class
│ │ │ ├── editConfig_jsp.java
│ │ │ ├── editProduct_jsp.class
│ │ │ ├── editProduct_jsp.java
│ │ │ ├── editProperty_jsp.class
│ │ │ ├── editProperty_jsp.java
│ │ │ ├── editPropertyValue_jsp.class
│ │ │ ├── editPropertyValue_jsp.java
│ │ │ ├── listCategory_jsp.class
│ │ │ ├── listCategory_jsp.java
│ │ │ ├── listOrder_jsp.class
│ │ │ ├── listOrder_jsp.java
│ │ │ ├── listProductImage_jsp.class
│ │ │ ├── listProductImage_jsp.java
│ │ │ ├── listProduct_jsp.class
│ │ │ ├── listProduct_jsp.java
│ │ │ ├── listProperties_jsp.class
│ │ │ ├── listProperties_jsp.java
│ │ │ ├── listUser_jsp.class
│ │ │ └── listUser_jsp.java
│ │ ├── buy_jsp.class
│ │ ├── buy_jsp.java
│ │ ├── cart_jsp.class
│ │ ├── cart_jsp.java
│ │ ├── category_jsp.class
│ │ ├── category_jsp.java
│ │ ├── comment_jsp.class
│ │ ├── comment_jsp.java
│ │ ├── confirmed_jsp.class
│ │ ├── confirmed_jsp.java
│ │ ├── confirmPay_jsp.class
│ │ ├── confirmPay_jsp.java
│ │ ├── home_jsp.class
│ │ ├── home_jsp.java
│ │ ├── login_jsp.class
│ │ ├── login_jsp.java
│ │ ├── msg_jsp.class
│ │ ├── msg_jsp.java
│ │ ├── myOrder_jsp.class
│ │ ├── myOrder_jsp.java
│ │ ├── payed_jsp.class
│ │ ├── payed_jsp.java
│ │ ├── pay_jsp.class
│ │ ├── pay_jsp.java
│ │ ├── product_jsp.class
│ │ ├── product_jsp.java
│ │ ├── register_jsp.class
│ │ ├── register_jsp.java
│ │ ├── registerSuccess_jsp.class
│ │ ├── registerSuccess_jsp.java
│ │ ├── search_jsp.class
│ │ └── search_jsp.java
│ └── tmall.iml
├── S-mall任务书.doc
└── S-mall成果书.doc
88 directories, 543 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论