实例介绍
SSH(Spring+Struts+Hibernate)轻量级购物软件Shopping演示系统(Java Web Edition)技术要点:Spring+Struts+Hibernate三大框架整合,Jquery-treeview、DIV+CSS3、HTML5、JavaScript、分页组件pagination、MySQL。
【实例截图】
【核心代码】
Shopping
└── Shopping
├── build
│ └── classes
│ ├── com
│ │ └── aoyy
│ │ ├── action
│ │ │ ├── BaseAction.class
│ │ │ ├── IndexAction.class
│ │ │ ├── order
│ │ │ │ ├── CartAction.class
│ │ │ │ ├── OrderAction.class
│ │ │ │ └── OrderActionorderAction_confirm-validation.xml
│ │ │ ├── product
│ │ │ │ ├── ProductAction.class
│ │ │ │ └── ProductTypeAction.class
│ │ │ ├── struts-back.xml
│ │ │ ├── struts-default.xml
│ │ │ ├── struts-front.xml
│ │ │ ├── user
│ │ │ │ └── UserAction.class
│ │ │ └── UserLoginInterceptor.class
│ │ ├── dao
│ │ │ ├── BaseDaoImpl.class
│ │ │ ├── IBaseDao.class
│ │ │ ├── IOrderDao.class
│ │ │ ├── IProductDao.class
│ │ │ ├── IProductTypeDao.class
│ │ │ ├── IUploadFileDao.class
│ │ │ ├── IUserDao.class
│ │ │ ├── OrderDaoImpl.class
│ │ │ ├── ProductDaoImpl.class
│ │ │ ├── ProductTypeDaoImpl.class
│ │ │ ├── UploadFileDaoImpl.class
│ │ │ └── UserDaoImpl.class
│ │ ├── model
│ │ │ ├── Order.class
│ │ │ ├── Order.hbm.xml
│ │ │ ├── OrderItem.class
│ │ │ ├── OrderItem.hbm.xml
│ │ │ ├── Product.class
│ │ │ ├── Product.hbm.xml
│ │ │ ├── ProductType.class
│ │ │ ├── ProductType.hbm.xml
│ │ │ ├── UploadFile.class
│ │ │ ├── UploadFile.hbm.xml
│ │ │ ├── User.class
│ │ │ └── User.hbm.xml
│ │ └── util
│ │ ├── EnumType.class
│ │ ├── Generics.class
│ │ ├── order
│ │ │ ├── Payment$1.class
│ │ │ ├── Payment$2.class
│ │ │ ├── Payment$3.class
│ │ │ ├── Payment$4.class
│ │ │ ├── Payment.class
│ │ │ ├── PaymentConverter.class
│ │ │ ├── PaymentType.class
│ │ │ ├── State$1.class
│ │ │ ├── State$2.class
│ │ │ ├── State$3.class
│ │ │ ├── State$4.class
│ │ │ ├── State.class
│ │ │ ├── StateConverter.class
│ │ │ └── StateType.class
│ │ ├── Pagination.class
│ │ ├── product
│ │ │ ├── Sex$1.class
│ │ │ ├── Sex$2.class
│ │ │ ├── Sex$3.class
│ │ │ ├── Sex.class
│ │ │ ├── SexConverter.class
│ │ │ └── SexType.class
│ │ └── StringFormatter.class
│ ├── hibernate.cfg.xml
│ ├── log4j.properties
│ ├── struts.properties
│ ├── struts.xml
│ ├── webApplicationContext.xml
│ └── xwork-conversion.properties
├── src
│ ├── com
│ │ └── aoyy
│ │ ├── action
│ │ │ ├── BaseAction.java
│ │ │ ├── IndexAction.java
│ │ │ ├── order
│ │ │ │ ├── CartAction.java
│ │ │ │ ├── OrderAction.java
│ │ │ │ └── OrderActionorderAction_confirm-validation.xml
│ │ │ ├── product
│ │ │ │ ├── ProductAction.java
│ │ │ │ └── ProductTypeAction.java
│ │ │ ├── struts-back.xml
│ │ │ ├── struts-default.xml
│ │ │ ├── struts-front.xml
│ │ │ ├── user
│ │ │ │ └── UserAction.java
│ │ │ └── UserLoginInterceptor.java
│ │ ├── dao
│ │ │ ├── BaseDaoImpl.java
│ │ │ ├── IBaseDao.java
│ │ │ ├── IOrderDao.java
│ │ │ ├── IProductDao.java
│ │ │ ├── IProductTypeDao.java
│ │ │ ├── IUploadFileDao.java
│ │ │ ├── IUserDao.java
│ │ │ ├── OrderDaoImpl.java
│ │ │ ├── ProductDaoImpl.java
│ │ │ ├── ProductTypeDaoImpl.java
│ │ │ ├── UploadFileDaoImpl.java
│ │ │ └── UserDaoImpl.java
│ │ ├── model
│ │ │ ├── Order.hbm.xml
│ │ │ ├── OrderItem.hbm.xml
│ │ │ ├── OrderItem.java
│ │ │ ├── Order.java
│ │ │ ├── Product.hbm.xml
│ │ │ ├── Product.java
│ │ │ ├── ProductType.hbm.xml
│ │ │ ├── ProductType.java
│ │ │ ├── UploadFile.hbm.xml
│ │ │ ├── UploadFile.java
│ │ │ ├── User.hbm.xml
│ │ │ └── User.java
│ │ └── util
│ │ ├── EnumType.java
│ │ ├── Generics.java
│ │ ├── order
│ │ │ ├── PaymentConverter.java
│ │ │ ├── Payment.java
│ │ │ ├── PaymentType.java
│ │ │ ├── StateConverter.java
│ │ │ ├── State.java
│ │ │ └── StateType.java
│ │ ├── Pagination.java
│ │ ├── product
│ │ │ ├── SexConverter.java
│ │ │ ├── Sex.java
│ │ │ └── SexType.java
│ │ └── StringFormatter.java
│ ├── hibernate.cfg.xml
│ ├── log4j.properties
│ ├── struts.properties
│ ├── struts.xml
│ ├── webApplicationContext.xml
│ └── xwork-conversion.properties
└── WebContent
├── CSS
│ ├── back
│ │ ├── back_index.css
│ │ ├── back_top.css
│ │ ├── order
│ │ │ ├── order_list.css
│ │ │ ├── order_query.css
│ │ │ ├── order_select.css
│ │ │ └── order_update.css
│ │ ├── product
│ │ │ ├── product_add.css
│ │ │ ├── product_edit.css
│ │ │ └── product_list.css
│ │ └── productType
│ │ ├── productType_add.css
│ │ ├── productType_edit.css
│ │ └── productType_list.css
│ ├── head.css
│ ├── index.css
│ ├── left.css
│ ├── order
│ │ ├── cart_list.css
│ │ ├── left.css
│ │ ├── order_add.css
│ │ ├── order_confirm.css
│ │ ├── order_error.css
│ │ └── order_list.css
│ ├── pagination.css
│ ├── product
│ │ ├── find_list_clicks.css
│ │ ├── find_list.css
│ │ ├── product_list.css
│ │ └── product_select.css
│ └── user
│ ├── login.css
│ └── register.css
├── files
│ ├── db_shopping.sql
│ └── readme.txt
├── index.jsp
├── jquery-treeview
│ ├── bower.json
│ ├── changelog.md
│ ├── images
│ │ ├── ajax-loader.gif
│ │ ├── file.gif
│ │ ├── folder-closed.gif
│ │ ├── folder.gif
│ │ ├── minus.gif
│ │ ├── plus.gif
│ │ ├── treeview-black.gif
│ │ ├── treeview-black-line.gif
│ │ ├── treeview-default.gif
│ │ ├── treeview-default-line.gif
│ │ ├── treeview-famfamfam.gif
│ │ ├── treeview-famfamfam-line.gif
│ │ ├── treeview-gray.gif
│ │ ├── treeview-gray-line.gif
│ │ ├── treeview-red.gif
│ │ └── treeview-red-line.gif
│ ├── jquery.min.js
│ ├── jquery.treeview.async.js
│ ├── jquery.treeview.css
│ ├── jquery.treeview.edit.js
│ ├── jquery.treeview.js
│ ├── jquery.treeview.sortable.js
│ ├── readme.md
│ ├── screenshot.png
│ └── study
│ ├── async.html
│ ├── bg.gif
│ ├── edit.html
│ ├── images.html
│ ├── index.html
│ ├── jquery.cookie.js
│ ├── large.html
│ ├── main.js
│ ├── prerendered.html
│ ├── screen.css
│ ├── simple.html
│ ├── sortable.html
│ ├── source.php
│ └── source.phps
├── JS
│ ├── common.js
│ ├── jquery-1.7.2.min.js
│ └── product.js
├── META-INF
│ └── MANIFEST.MF
└── WEB-INF
├── JSP
│ ├── back
│ │ ├── back_index.jsp
│ │ ├── back_left.jsp
│ │ ├── back_top.jsp
│ │ ├── order
│ │ │ ├── order_list.jsp
│ │ │ ├── order_query.jsp
│ │ │ ├── order_select.jsp
│ │ │ └── order_update.jsp
│ │ ├── product
│ │ │ ├── product_add.jsp
│ │ │ ├── product_edit.jsp
│ │ │ └── product_list.jsp
│ │ └── productType
│ │ ├── productType_add.jsp
│ │ ├── productType_edit.jsp
│ │ └── productType_list.jsp
│ ├── foot.jsp
│ ├── head.jsp
│ ├── index.jsp
│ ├── left.jsp
│ ├── order
│ │ ├── cart_list.jsp
│ │ ├── left.jsp
│ │ ├── order_add.jsp
│ │ ├── order_confirm.jsp
│ │ ├── order_error.jsp
│ │ └── order_list.jsp
│ ├── pagination.jsp
│ ├── product
│ │ ├── find_list_clicks.jsp
│ │ ├── find_list.jsp
│ │ ├── product_list.jsp
│ │ └── product_select.jsp
│ ├── treeview_product_type.jsp
│ └── user
│ ├── login.jsp
│ └── register.jsp
└── web.xml
50 directories, 228 files
标签:
SSH(Spring+Struts+Hibernate)轻量级购物软件Shopping演示系统(Java Web Edition)
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论