在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → KDG在线系统:基础 商城后台 es6

KDG在线系统:基础 商城后台 es6

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:38.66M
  • 下载次数:12
  • 浏览次数:84
  • 发布时间:2022-09-09
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:njc666
  • 文件格式:.rar
  • 所需积分:2
 相关标签: es6 ES 商城 基础 后台

实例介绍

【实例简介】KDG在线系统:基础 商城后台 es6

【实例截图】

from clipboardfrom clipboard

【核心代码】

.
├── SSM_ecommerce
│   ├── LICENSE
│   ├── README.md
│   ├── out
│   │   └── artifacts
│   │       └── SSM_ecommerce_war_exploded
│   │           ├── META-INF
│   │           │   └── MANIFEST.MF
│   │           ├── WEB-INF
│   │           │   ├── classes
│   │           │   │   ├── com
│   │           │   │   │   └── chen
│   │           │   │   │       ├── controller
│   │           │   │   │       │   ├── BuDanController.class
│   │           │   │   │       │   ├── DemoController.class
│   │           │   │   │       │   ├── EsUtils.class
│   │           │   │   │       │   ├── SysUserController.class
│   │           │   │   │       │   └── projectExecutiveController.class
│   │           │   │   │       ├── dao
│   │           │   │   │       │   ├── DemoDao.class
│   │           │   │   │       │   └── SysUserDao.class
│   │           │   │   │       ├── entity
│   │           │   │   │       │   ├── Demo.class
│   │           │   │   │       │   ├── ExportExcel.class
│   │           │   │   │       │   ├── Product.class
│   │           │   │   │       │   ├── ProductType.class
│   │           │   │   │       │   ├── ResponseResult.class
│   │           │   │   │       │   ├── ResponseStatusConstant.class
│   │           │   │   │       │   ├── SysRole.class
│   │           │   │   │       │   └── SysUser.class
│   │           │   │   │       ├── interceptor
│   │           │   │   │       │   └── LoginInterceptor.class
│   │           │   │   │       └── service
│   │           │   │   │           └── impl
│   │           │   │   │               ├── DemoService.class
│   │           │   │   │               ├── DemoServiceImpl.class
│   │           │   │   │               ├── ProjectExecutiveService.class
│   │           │   │   │               ├── ProjectExecutiveServiceImpl.class
│   │           │   │   │               ├── QueryProductType.class
│   │           │   │   │               ├── QueryProductTypeImpl.class
│   │           │   │   │               ├── SysUserSerivce.class
│   │           │   │   │               └── SysUserSerivceImpl.class
│   │           │   │   ├── dataSource.properties
│   │           │   │   ├── log4j.properties
│   │           │   │   ├── mapper
│   │           │   │   │   ├── DemoMapper.xml
│   │           │   │   │   └── SysUserMapper.xml
│   │           │   │   ├── mybatis-config.xml
│   │           │   │   └── spring
│   │           │   │       ├── spring-dao.xml
│   │           │   │       ├── spring-mvc.xml
│   │           │   │       └── spring-service.xml
│   │           │   ├── lib
│   │           │   │   ├── aspectjweaver-1.8.9.jar
│   │           │   │   ├── commons-beanutils-1.9.3.jar
│   │           │   │   ├── commons-codec-1.9.jar
│   │           │   │   ├── commons-collections-3.2.2.jar
│   │           │   │   ├── commons-collections4-4.1.jar
│   │           │   │   ├── commons-fileupload-1.3.1.jar
│   │           │   │   ├── commons-io-2.2.jar
│   │           │   │   ├── commons-logging-1.2.jar
│   │           │   │   ├── commons-net-3.1.jar
│   │           │   │   ├── druid-1.1.1.jar
│   │           │   │   ├── fastjson-1.2.47.jar
│   │           │   │   ├── hamcrest-core-1.3.jar
│   │           │   │   ├── httpclient-4.5.2.jar
│   │           │   │   ├── httpcore-4.4.4.jar
│   │           │   │   ├── javax.servlet-api-3.1.0.jar
│   │           │   │   ├── jsp-api-2.2.jar
│   │           │   │   ├── jsqlparser-1.0.jar
│   │           │   │   ├── jstl-1.2.jar
│   │           │   │   ├── junit-4.11.jar
│   │           │   │   ├── lombok-1.18.18.jar
│   │           │   │   ├── mybatis-3.4.5.jar
│   │           │   │   ├── mybatis-spring-1.3.1.jar
│   │           │   │   ├── mysql-connector-java-5.1.38.jar
│   │           │   │   ├── pagehelper-5.1.2.jar
│   │           │   │   ├── poi-3.17.jar
│   │           │   │   ├── poi-ooxml-3.17.jar
│   │           │   │   ├── poi-ooxml-schemas-3.17.jar
│   │           │   │   ├── poi-scratchpad-3.17.jar
│   │           │   │   ├── spring-aop-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-aspects-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-beans-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-context-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-core-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-expression-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-jdbc-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-tx-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-web-4.3.16.RELEASE.jar
│   │           │   │   ├── spring-webmvc-4.3.16.RELEASE.jar
│   │           │   │   ├── sqljdbc4-4.0.jar
│   │           │   │   ├── testng-6.8.7.jar
│   │           │   │   └── xmlbeans-2.6.0.jar
│   │           │   ├── statics
│   │           │   │   ├── css
│   │           │   │   │   ├── bootstrap-responsive.css
│   │           │   │   │   ├── bootstrap.css
│   │           │   │   │   ├── bootstrap.min.css
│   │           │   │   │   ├── bootstrapValidator.min.css
│   │           │   │   │   ├── file.css
│   │           │   │   │   ├── index.css
│   │           │   │   │   ├── login.css
│   │           │   │   │   ├── mycss.css
│   │           │   │   │   ├── style.css
│   │           │   │   │   └── zshop.css
│   │           │   │   ├── fonts
│   │           │   │   │   ├── glyphicons-halflings-regular.eot
│   │           │   │   │   ├── glyphicons-halflings-regular.svg
│   │           │   │   │   ├── glyphicons-halflings-regular.ttf
│   │           │   │   │   ├── glyphicons-halflings-regular.woff
│   │           │   │   │   └── glyphicons-halflings-regular.woff2
│   │           │   │   ├── iconfont
│   │           │   │   │   ├── demo.css
│   │           │   │   │   ├── demo_fontclass.html
│   │           │   │   │   ├── demo_symbol.html
│   │           │   │   │   ├── demo_unicode.html
│   │           │   │   │   ├── iconfont.css
│   │           │   │   │   ├── iconfont.eot
│   │           │   │   │   ├── iconfont.js
│   │           │   │   │   ├── iconfont.svg
│   │           │   │   │   ├── iconfont.ttf
│   │           │   │   │   └── iconfont.woff
│   │           │   │   ├── images
│   │           │   │   │   ├── 3.jpg
│   │           │   │   │   ├── 33.jpg
│   │           │   │   │   ├── 4.jpg
│   │           │   │   │   ├── add.png
│   │           │   │   │   ├── backimage.jpg
│   │           │   │   │   ├── com-logo1.png
│   │           │   │   │   ├── hotaddress1.jpeg
│   │           │   │   │   ├── hotaddress2.png
│   │           │   │   │   ├── hotaddress3.jpeg
│   │           │   │   │   ├── image.jpg
│   │           │   │   │   ├── shop1.jpg
│   │           │   │   │   ├── shop10.jpg
│   │           │   │   │   ├── shop2.jpg
│   │           │   │   │   ├── shop3.jpg
│   │           │   │   │   ├── shop4.jpg
│   │           │   │   │   ├── shop5.jpg
│   │           │   │   │   ├── shop6.jpg
│   │           │   │   │   ├── shop7.jpg
│   │           │   │   │   ├── shop8.jpg
│   │           │   │   │   ├── shop9.jpg
│   │           │   │   │   ├── temp.jpeg
│   │           │   │   │   └── user.jpeg
│   │           │   │   ├── js
│   │           │   │   │   ├── bootstrap-paginator.js
│   │           │   │   │   ├── bootstrap.js
│   │           │   │   │   ├── bootstrap.min.js
│   │           │   │   │   ├── bootstrapValidator.min.js
│   │           │   │   │   ├── index.js
│   │           │   │   │   ├── jquery-3.6.0.js
│   │           │   │   │   ├── jquery.js
│   │           │   │   │   ├── jquery.min.js
│   │           │   │   │   ├── login.js
│   │           │   │   │   └── userSetting.js
│   │           │   │   └── layer
│   │           │   │       ├── layer.js
│   │           │   │       ├── mobile
│   │           │   │       │   ├── layer.js
│   │           │   │       │   └── need
│   │           │   │       │       └── layer.css
│   │           │   │       └── theme
│   │           │   │           └── default
│   │           │   │               ├── icon-ext.png
│   │           │   │               ├── icon.png
│   │           │   │               ├── layer.css
│   │           │   │               ├── loading-0.gif
│   │           │   │               ├── loading-1.gif
│   │           │   │               └── loading-2.gif
│   │           │   ├── views
│   │           │   │   ├── demolist.jsp
│   │           │   │   ├── error.jsp
│   │           │   │   ├── login.jsp
│   │           │   │   ├── main.jsp
│   │           │   │   ├── pic.jsp
│   │           │   │   ├── productManager.jsp
│   │           │   │   ├── productTypeManager.jsp
│   │           │   │   └── sysuserManager.jsp
│   │           │   └── web.xml
│   │           ├── index.jsp
│   │           └── upload
│   │               └── 1.jpg
│   ├── pom.xml
│   ├── src
│   │   └── main
│   │       ├── java
│   │       │   └── com
│   │       │       └── chen
│   │       │           ├── controller
│   │       │           │   ├── BuDanController.java
│   │       │           │   ├── DemoController.java
│   │       │           │   ├── EsUtils.java
│   │       │           │   ├── SysUserController.java
│   │       │           │   └── projectExecutiveController.java
│   │       │           ├── dao
│   │       │           │   ├── DemoDao.java
│   │       │           │   └── SysUserDao.java
│   │       │           ├── entity
│   │       │           │   ├── Demo.java
│   │       │           │   ├── ExportExcel.java
│   │       │           │   ├── Product.java
│   │       │           │   ├── ProductType.java
│   │       │           │   ├── ResponseResult.java
│   │       │           │   ├── ResponseStatusConstant.java
│   │       │           │   ├── SysRole.java
│   │       │           │   └── SysUser.java
│   │       │           ├── interceptor
│   │       │           │   └── LoginInterceptor.java
│   │       │           ├── service
│   │       │           │   └── impl
│   │       │           │       ├── DemoService.java
│   │       │           │       ├── DemoServiceImpl.java
│   │       │           │       ├── ProjectExecutiveService.java
│   │       │           │       ├── ProjectExecutiveServiceImpl.java
│   │       │           │       ├── QueryProductType.java
│   │       │           │       ├── QueryProductTypeImpl.java
│   │       │           │       ├── SysUserSerivce.java
│   │       │           │       └── SysUserSerivceImpl.java
│   │       │           └── utils
│   │       └── resources
│   │           ├── dataSource.properties
│   │           ├── log4j.properties
│   │           ├── mapper
│   │           │   ├── DemoMapper.xml
│   │           │   └── SysUserMapper.xml
│   │           ├── mybatis-config.xml
│   │           └── spring
│   │               ├── spring-dao.xml
│   │               ├── spring-mvc.xml
│   │               └── spring-service.xml
│   ├── target
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── chen
│   │   │   │       ├── controller
│   │   │   │       │   ├── BuDanController.class
│   │   │   │       │   ├── DemoController.class
│   │   │   │       │   ├── EsUtils.class
│   │   │   │       │   ├── SysUserController.class
│   │   │   │       │   └── projectExecutiveController.class
│   │   │   │       ├── dao
│   │   │   │       │   ├── DemoDao.class
│   │   │   │       │   └── SysUserDao.class
│   │   │   │       ├── entity
│   │   │   │       │   ├── Demo.class
│   │   │   │       │   ├── ExportExcel.class
│   │   │   │       │   ├── Product.class
│   │   │   │       │   ├── ProductType.class
│   │   │   │       │   ├── ResponseResult.class
│   │   │   │       │   ├── ResponseStatusConstant.class
│   │   │   │       │   ├── SysRole.class
│   │   │   │       │   └── SysUser.class
│   │   │   │       ├── interceptor
│   │   │   │       │   └── LoginInterceptor.class
│   │   │   │       └── service
│   │   │   │           └── impl
│   │   │   │               ├── DemoService.class
│   │   │   │               ├── DemoServiceImpl.class
│   │   │   │               ├── ProjectExecutiveService.class
│   │   │   │               ├── ProjectExecutiveServiceImpl.class
│   │   │   │               ├── QueryProductType.class
│   │   │   │               ├── QueryProductTypeImpl.class
│   │   │   │               ├── SysUserSerivce.class
│   │   │   │               └── SysUserSerivceImpl.class
│   │   │   ├── dataSource.properties
│   │   │   ├── log4j.properties
│   │   │   ├── mapper
│   │   │   │   ├── DemoMapper.xml
│   │   │   │   └── SysUserMapper.xml
│   │   │   ├── mybatis-config.xml
│   │   │   └── spring
│   │   │       ├── spring-dao.xml
│   │   │       ├── spring-mvc.xml
│   │   │       └── spring-service.xml
│   │   ├── generated-sources
│   │   │   └── annotations
│   │   └── maven-status
│   │       └── maven-compiler-plugin
│   │           └── compile
│   │               └── default-compile
│   │                   ├── createdFiles.lst
│   │                   └── inputFiles.lst
│   └── web
│       ├── WEB-INF
│       │   ├── statics
│       │   │   ├── css
│       │   │   │   ├── bootstrap-responsive.css
│       │   │   │   ├── bootstrap.css
│       │   │   │   ├── bootstrap.min.css
│       │   │   │   ├── bootstrapValidator.min.css
│       │   │   │   ├── file.css
│       │   │   │   ├── index.css
│       │   │   │   ├── login.css
│       │   │   │   ├── mycss.css
│       │   │   │   ├── style.css
│       │   │   │   └── zshop.css
│       │   │   ├── fonts
│       │   │   │   ├── glyphicons-halflings-regular.eot
│       │   │   │   ├── glyphicons-halflings-regular.svg
│       │   │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   │   ├── glyphicons-halflings-regular.woff
│       │   │   │   └── glyphicons-halflings-regular.woff2
│       │   │   ├── iconfont
│       │   │   │   ├── demo.css
│       │   │   │   ├── demo_fontclass.html
│       │   │   │   ├── demo_symbol.html
│       │   │   │   ├── demo_unicode.html
│       │   │   │   ├── iconfont.css
│       │   │   │   ├── iconfont.eot
│       │   │   │   ├── iconfont.js
│       │   │   │   ├── iconfont.svg
│       │   │   │   ├── iconfont.ttf
│       │   │   │   └── iconfont.woff
│       │   │   ├── images
│       │   │   │   ├── 3.jpg
│       │   │   │   ├── 33.jpg
│       │   │   │   ├── 4.jpg
│       │   │   │   ├── add.png
│       │   │   │   ├── backimage.jpg
│       │   │   │   ├── com-logo1.png
│       │   │   │   ├── hotaddress1.jpeg
│       │   │   │   ├── hotaddress2.png
│       │   │   │   ├── hotaddress3.jpeg
│       │   │   │   ├── image.jpg
│       │   │   │   ├── shop1.jpg
│       │   │   │   ├── shop10.jpg
│       │   │   │   ├── shop2.jpg
│       │   │   │   ├── shop3.jpg
│       │   │   │   ├── shop4.jpg
│       │   │   │   ├── shop5.jpg
│       │   │   │   ├── shop6.jpg
│       │   │   │   ├── shop7.jpg
│       │   │   │   ├── shop8.jpg
│       │   │   │   ├── shop9.jpg
│       │   │   │   ├── temp.jpeg
│       │   │   │   └── user.jpeg
│       │   │   ├── js
│       │   │   │   ├── bootstrap-paginator.js
│       │   │   │   ├── bootstrap.js
│       │   │   │   ├── bootstrap.min.js
│       │   │   │   ├── bootstrapValidator.min.js
│       │   │   │   ├── index.js
│       │   │   │   ├── jquery-3.6.0.js
│       │   │   │   ├── jquery.js
│       │   │   │   ├── jquery.min.js
│       │   │   │   ├── login.js
│       │   │   │   └── userSetting.js
│       │   │   └── layer
│       │   │       ├── layer.js
│       │   │       ├── mobile
│       │   │       │   ├── layer.js
│       │   │       │   └── need
│       │   │       │       └── layer.css
│       │   │       └── theme
│       │   │           └── default
│       │   │               ├── icon-ext.png
│       │   │               ├── icon.png
│       │   │               ├── layer.css
│       │   │               ├── loading-0.gif
│       │   │               ├── loading-1.gif
│       │   │               └── loading-2.gif
│       │   ├── upload
│       │   ├── views
│       │   │   ├── demolist.jsp
│       │   │   ├── error.jsp
│       │   │   ├── login.jsp
│       │   │   ├── main.jsp
│       │   │   ├── pic.jsp
│       │   │   ├── productManager.jsp
│       │   │   ├── productTypeManager.jsp
│       │   │   └── sysuserManager.jsp
│       │   └── web.xml
│       └── index.jsp
└── 基础 商城后台 es6_SSM_ecommerce20220906.rar

79 directories, 297 files



标签: es6 ES 商城 基础 后台

实例下载地址

KDG在线系统:基础 商城后台 es6

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警