实例介绍
商城ssh。带数据库
【实例截图】
【核心代码】
商城ssh
├── 1.jpg
├── 2.jpg
├── 3.jpg
├── 4.jpg
├── 5.jpg
├── 6.jpg
├── 7.jpg
├── 9.jpg
├── shop
│ ├── WebRoot
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── applicationContext-common.xml
│ │ │ │ ├── com
│ │ │ │ │ └── lyq
│ │ │ │ │ ├── action
│ │ │ │ │ │ ├── BaseAction-logon-validation.xml
│ │ │ │ │ │ ├── BaseAction.class
│ │ │ │ │ │ ├── IndexAction.class
│ │ │ │ │ │ ├── interceptor
│ │ │ │ │ │ │ ├── CustomerLoginInteceptor.class
│ │ │ │ │ │ │ └── UserLoginInterceptor.class
│ │ │ │ │ │ ├── order
│ │ │ │ │ │ │ ├── CartAction.class
│ │ │ │ │ │ │ ├── OrderAction-order_confirm-validation.xml
│ │ │ │ │ │ │ └── OrderAction.class
│ │ │ │ │ │ ├── product
│ │ │ │ │ │ │ ├── ProductAction.class
│ │ │ │ │ │ │ ├── ProductCategoryAction-category_save-validation.xml
│ │ │ │ │ │ │ └── ProductCategoryAction.class
│ │ │ │ │ │ ├── struts-admin.xml
│ │ │ │ │ │ ├── struts-default.xml
│ │ │ │ │ │ ├── struts-front.xml
│ │ │ │ │ │ └── user
│ │ │ │ │ │ ├── CustomerAction-customer_save-validation.xml
│ │ │ │ │ │ ├── CustomerAction.class
│ │ │ │ │ │ └── UserAction.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BaseDao.class
│ │ │ │ │ │ ├── DaoSupport$1.class
│ │ │ │ │ │ ├── DaoSupport$2.class
│ │ │ │ │ │ ├── DaoSupport.class
│ │ │ │ │ │ ├── DaoSupportTest.class
│ │ │ │ │ │ ├── order
│ │ │ │ │ │ │ ├── OrderDao.class
│ │ │ │ │ │ │ └── OrderDaoImpl.class
│ │ │ │ │ │ ├── product
│ │ │ │ │ │ │ ├── ProductCategoryDao.class
│ │ │ │ │ │ │ ├── ProductCategoryDaoImpl.class
│ │ │ │ │ │ │ ├── ProductDao.class
│ │ │ │ │ │ │ ├── ProductDaoImpl.class
│ │ │ │ │ │ │ ├── UploadFileDao.class
│ │ │ │ │ │ │ └── UploadFileDaoImpl.class
│ │ │ │ │ │ └── user
│ │ │ │ │ │ ├── CustomerDao.class
│ │ │ │ │ │ ├── CustomerDaoImpl.class
│ │ │ │ │ │ ├── UserDao.class
│ │ │ │ │ │ └── UserDaoImpl.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── OrderState$1.class
│ │ │ │ │ │ ├── OrderState$2.class
│ │ │ │ │ │ ├── OrderState$3.class
│ │ │ │ │ │ ├── OrderState.class
│ │ │ │ │ │ ├── PageModel.class
│ │ │ │ │ │ ├── PaymentWay$1.class
│ │ │ │ │ │ ├── PaymentWay$2.class
│ │ │ │ │ │ ├── PaymentWay$3.class
│ │ │ │ │ │ ├── PaymentWay$4.class
│ │ │ │ │ │ ├── PaymentWay.class
│ │ │ │ │ │ ├── Sex$1.class
│ │ │ │ │ │ ├── Sex$2.class
│ │ │ │ │ │ ├── Sex$3.class
│ │ │ │ │ │ ├── Sex.class
│ │ │ │ │ │ ├── order
│ │ │ │ │ │ │ ├── Order.class
│ │ │ │ │ │ │ ├── Order.hbm.xml
│ │ │ │ │ │ │ ├── OrderItem.class
│ │ │ │ │ │ │ └── OrderItem.hbm.xml
│ │ │ │ │ │ ├── product
│ │ │ │ │ │ │ ├── ProductCategory.class
│ │ │ │ │ │ │ ├── ProductCategory.hbm.xml
│ │ │ │ │ │ │ ├── ProductInfo.class
│ │ │ │ │ │ │ ├── ProductInfo.hbm.xml
│ │ │ │ │ │ │ ├── UploadFile.class
│ │ │ │ │ │ │ └── UploadFile.hbm.xml
│ │ │ │ │ │ └── user
│ │ │ │ │ │ ├── Customer.class
│ │ │ │ │ │ ├── Customer.hbm.xml
│ │ │ │ │ │ ├── User.class
│ │ │ │ │ │ └── User.hbm.xml
│ │ │ │ │ └── util
│ │ │ │ │ ├── AppException.class
│ │ │ │ │ ├── GenericsUtils.class
│ │ │ │ │ ├── OrderStateConversion.class
│ │ │ │ │ ├── PaymentWayConversion.class
│ │ │ │ │ ├── SexConversion.class
│ │ │ │ │ ├── StringUitl.class
│ │ │ │ │ └── hibernate
│ │ │ │ │ ├── EnumType.class
│ │ │ │ │ ├── HibernateUtils.class
│ │ │ │ │ ├── OrderStateType.class
│ │ │ │ │ ├── PaymentWayType.class
│ │ │ │ │ └── SexType.class
│ │ │ │ ├── hibernate.cfg.xml
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── struts.properties
│ │ │ │ ├── struts.xml
│ │ │ │ └── xwork-conversion.properties
│ │ │ ├── lib
│ │ │ │ ├── antlr-2.7.6.jar
│ │ │ │ ├── asm-attrs.jar
│ │ │ │ ├── asm.jar
│ │ │ │ ├── aspectjrt.jar
│ │ │ │ ├── aspectjweaver.jar
│ │ │ │ ├── c3p0-0.9.1.2.jar
│ │ │ │ ├── cglib-2.1.3.jar
│ │ │ │ ├── cglib-nodep-2.1_3.jar
│ │ │ │ ├── common-annotations.jar
│ │ │ │ ├── commons-beanutils.jar
│ │ │ │ ├── commons-collections-2.1.1.jar
│ │ │ │ ├── commons-dbcp.jar
│ │ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ │ ├── commons-io-1.3.2.jar
│ │ │ │ ├── commons-logging-1.0.4.jar
│ │ │ │ ├── commons-pool.jar
│ │ │ │ ├── dom4j-1.6.1.jar
│ │ │ │ ├── ehcache-1.2.jar
│ │ │ │ ├── freemarker-2.3.15.jar
│ │ │ │ ├── hibernate3.jar
│ │ │ │ ├── jaas.jar
│ │ │ │ ├── javassist.jar
│ │ │ │ ├── jaxen-1.1-beta-7.jar
│ │ │ │ ├── jdbc2_0-stdext.jar
│ │ │ │ ├── json-lib-2.1.jar
│ │ │ │ ├── jta.jar
│ │ │ │ ├── junit-4.5.jar
│ │ │ │ ├── log4j-1.2.15.jar
│ │ │ │ ├── msbase.jar
│ │ │ │ ├── mssqlserver.jar
│ │ │ │ ├── msutil.jar
│ │ │ │ ├── mysql-connector-java-5.1.10-bin.jar
│ │ │ │ ├── mysql-connector-java-5.1.6-bin.jar
│ │ │ │ ├── ognl-2.7.3.jar
│ │ │ │ ├── servlet-api.jar
│ │ │ │ ├── spring-test-2.5.6.jar
│ │ │ │ ├── spring-webmvc-struts.jar
│ │ │ │ ├── spring.jar
│ │ │ │ ├── struts2-core-2.1.8.1.jar
│ │ │ │ ├── struts2-json-plugin-2.1.8.1.jar
│ │ │ │ ├── struts2-spring-plugin-2.1.8.1.jar
│ │ │ │ ├── xerces-2.6.2.jar
│ │ │ │ ├── xml-apis.jar
│ │ │ │ └── xwork-core-2.1.6.jar
│ │ │ ├── pages
│ │ │ │ ├── admin
│ │ │ │ │ ├── left.jsp
│ │ │ │ │ ├── main.jsp
│ │ │ │ │ ├── order
│ │ │ │ │ │ ├── order_list.jsp
│ │ │ │ │ │ ├── order_query.jsp
│ │ │ │ │ │ ├── order_select.jsp
│ │ │ │ │ │ └── order_update_success.jsp
│ │ │ │ │ ├── product
│ │ │ │ │ │ ├── category_add.jsp
│ │ │ │ │ │ ├── category_edit.jsp
│ │ │ │ │ │ ├── category_list.jsp
│ │ │ │ │ │ ├── product_add.jsp
│ │ │ │ │ │ ├── product_edit.jsp
│ │ │ │ │ │ └── product_list.jsp
│ │ │ │ │ ├── right.jsp
│ │ │ │ │ ├── top.jsp
│ │ │ │ │ └── user
│ │ │ │ │ └── user_login.jsp
│ │ │ │ ├── cart
│ │ │ │ │ └── cart_list.jsp
│ │ │ │ ├── common
│ │ │ │ │ ├── common.jsp
│ │ │ │ │ ├── common_admin.jsp
│ │ │ │ │ ├── head.jsp
│ │ │ │ │ ├── page.jsp
│ │ │ │ │ └── show_error.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ ├── order
│ │ │ │ │ ├── order_add.jsp
│ │ │ │ │ ├── order_confirm.jsp
│ │ │ │ │ ├── order_error.jsp
│ │ │ │ │ ├── order_list.jsp
│ │ │ │ │ └── order_success.jsp
│ │ │ │ ├── product
│ │ │ │ │ ├── order_success.jsp
│ │ │ │ │ ├── product_click_list.jsp
│ │ │ │ │ ├── product_find_list.jsp
│ │ │ │ │ ├── product_list.jsp
│ │ │ │ │ └── product_select.jsp
│ │ │ │ └── user
│ │ │ │ ├── customer_login.jsp
│ │ │ │ └── customer_reg.jsp
│ │ │ └── web.xml
│ │ ├── css
│ │ │ ├── images
│ │ │ │ ├── 01.gif
│ │ │ │ ├── 02.gif
│ │ │ │ ├── 03.gif
│ │ │ │ ├── 04.gif
│ │ │ │ ├── 05.gif
│ │ │ │ ├── 06.gif
│ │ │ │ ├── 07.gif
│ │ │ │ ├── 08.gif
│ │ │ │ ├── an_06.gif
│ │ │ │ ├── an_08.gif
│ │ │ │ ├── bg_03.gif
│ │ │ │ ├── blue.gif
│ │ │ │ ├── cp01_03.gif
│ │ │ │ ├── cp_06.gif
│ │ │ │ ├── cp_11.gif
│ │ │ │ ├── dl_03.gif
│ │ │ │ ├── dl_06.gif
│ │ │ │ ├── dl_08.gif
│ │ │ │ ├── flower.gif
│ │ │ │ ├── gm_06.gif
│ │ │ │ ├── h_32.gif
│ │ │ │ ├── ht_02_01.gif
│ │ │ │ ├── ht_02_02.gif
│ │ │ │ ├── ht_02_03.gif
│ │ │ │ ├── ht_02_06.gif
│ │ │ │ ├── ht_02_10.gif
│ │ │ │ ├── ht_02_13.gif
│ │ │ │ ├── ht_02_15.gif
│ │ │ │ ├── ht_02_18.gif
│ │ │ │ ├── ht_02_21.gif
│ │ │ │ ├── index_03.gif
│ │ │ │ ├── index_06.gif
│ │ │ │ ├── index_09.gif
│ │ │ │ ├── index_12.gif
│ │ │ │ ├── index_13.gif
│ │ │ │ ├── index_14.gif
│ │ │ │ ├── index_15.gif
│ │ │ │ ├── index_16.gif
│ │ │ │ ├── index_17.gif
│ │ │ │ ├── index_19.gif
│ │ │ │ ├── index_23.gif
│ │ │ │ ├── index_25.gif
│ │ │ │ ├── index_26.gif
│ │ │ │ ├── index_27.gif
│ │ │ │ ├── index_28.gif
│ │ │ │ ├── index_39.gif
│ │ │ │ ├── index_42.gif
│ │ │ │ ├── index_47.gif
│ │ │ │ ├── index_49.gif
│ │ │ │ ├── index_51.gif
│ │ │ │ ├── load.gif
│ │ │ │ ├── rz_15.gif
│ │ │ │ ├── rz_17.gif
│ │ │ │ ├── tu_50.gif
│ │ │ │ ├── zc_03.gif
│ │ │ │ ├── zh01_03.gif
│ │ │ │ ├── zh01_07.gif
│ │ │ │ ├── zh03_03.gif
│ │ │ │ ├── zh03_07.gif
│ │ │ │ ├── zh03_09.gif
│ │ │ │ ├── zh03_11.gif
│ │ │ │ └── zh_03.gif
│ │ │ ├── style_ht.css
│ │ │ └── style_index.css
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── jquery.js
│ │ │ └── public.js
│ │ └── upload
│ │ ├── 201004201340260341.jpg
│ │ ├── 201004201342270110.jpg
│ │ ├── 201004201359330922.jpg
│ │ ├── 201004201400560420.jpg
│ │ └── 201004201401400092.jpg
│ ├── src
│ │ ├── applicationContext-common.xml
│ │ ├── com
│ │ │ └── lyq
│ │ │ ├── action
│ │ │ │ ├── BaseAction-logon-validation.xml
│ │ │ │ ├── BaseAction.java
│ │ │ │ ├── IndexAction.java
│ │ │ │ ├── interceptor
│ │ │ │ │ ├── CustomerLoginInteceptor.java
│ │ │ │ │ └── UserLoginInterceptor.java
│ │ │ │ ├── order
│ │ │ │ │ ├── CartAction.java
│ │ │ │ │ ├── OrderAction-order_confirm-validation.xml
│ │ │ │ │ └── OrderAction.java
│ │ │ │ ├── product
│ │ │ │ │ ├── ProductAction.java
│ │ │ │ │ ├── ProductCategoryAction-category_save-validation.xml
│ │ │ │ │ └── ProductCategoryAction.java
│ │ │ │ ├── struts-admin.xml
│ │ │ │ ├── struts-default.xml
│ │ │ │ ├── struts-front.xml
│ │ │ │ └── user
│ │ │ │ ├── CustomerAction-customer_save-validation.xml
│ │ │ │ ├── CustomerAction.java
│ │ │ │ └── UserAction.java
│ │ │ ├── dao
│ │ │ │ ├── BaseDao.java
│ │ │ │ ├── DaoSupport.java
│ │ │ │ ├── DaoSupportTest.java
│ │ │ │ ├── order
│ │ │ │ │ ├── OrderDao.java
│ │ │ │ │ └── OrderDaoImpl.java
│ │ │ │ ├── product
│ │ │ │ │ ├── ProductCategoryDao.java
│ │ │ │ │ ├── ProductCategoryDaoImpl.java
│ │ │ │ │ ├── ProductDao.java
│ │ │ │ │ ├── ProductDaoImpl.java
│ │ │ │ │ ├── UploadFileDao.java
│ │ │ │ │ └── UploadFileDaoImpl.java
│ │ │ │ └── user
│ │ │ │ ├── CustomerDao.java
│ │ │ │ ├── CustomerDaoImpl.java
│ │ │ │ ├── UserDao.java
│ │ │ │ └── UserDaoImpl.java
│ │ │ ├── model
│ │ │ │ ├── OrderState.java
│ │ │ │ ├── PageModel.java
│ │ │ │ ├── PaymentWay.java
│ │ │ │ ├── Sex.java
│ │ │ │ ├── order
│ │ │ │ │ ├── Order.hbm.xml
│ │ │ │ │ ├── Order.java
│ │ │ │ │ ├── OrderItem.hbm.xml
│ │ │ │ │ └── OrderItem.java
│ │ │ │ ├── product
│ │ │ │ │ ├── ProductCategory.hbm.xml
│ │ │ │ │ ├── ProductCategory.java
│ │ │ │ │ ├── ProductInfo.hbm.xml
│ │ │ │ │ ├── ProductInfo.java
│ │ │ │ │ ├── UploadFile.hbm.xml
│ │ │ │ │ └── UploadFile.java
│ │ │ │ └── user
│ │ │ │ ├── Customer.hbm.xml
│ │ │ │ ├── Customer.java
│ │ │ │ ├── User.hbm.xml
│ │ │ │ └── User.java
│ │ │ └── util
│ │ │ ├── AppException.java
│ │ │ ├── GenericsUtils.java
│ │ │ ├── OrderStateConversion.java
│ │ │ ├── PaymentWayConversion.java
│ │ │ ├── SexConversion.java
│ │ │ ├── StringUitl.java
│ │ │ └── hibernate
│ │ │ ├── EnumType.java
│ │ │ ├── HibernateUtils.java
│ │ │ ├── OrderStateType.java
│ │ │ ├── PaymentWayType.java
│ │ │ └── SexType.java
│ │ ├── hibernate.cfg.xml
│ │ ├── log4j.properties
│ │ ├── struts.properties
│ │ ├── struts.xml
│ │ └── xwork-conversion.properties
│ └── 程序使用说明.doc
├── 说明.txt
├── 数据库
│ └── mysql.sql
├── 项目安装说明.txt
└── 关注科帮网获取更多源码.url
56 directories, 311 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论