实例介绍
此宠物商城是由SSM搭建,jsp页面,mysql数据库,共同实现的。内含源码,SQL脚本,实践报告。
【实例截图】
【核心代码】
程序开发框架实践作业(李佳小组)
└── 程序开发框架实践作业(李佳小组)
├── shop
│ ├── build
│ │ └── classes
│ │ ├── com
│ │ │ └── shop
│ │ │ ├── controller
│ │ │ │ ├── AdminController.class
│ │ │ │ ├── ajaxController.class
│ │ │ │ ├── cartController.class
│ │ │ │ ├── CategorySecondController.class
│ │ │ │ ├── checkImgController.class
│ │ │ │ ├── converters
│ │ │ │ │ └── DateConverters.class
│ │ │ │ ├── indexController.class
│ │ │ │ ├── loginController.class
│ │ │ │ ├── messageController.class
│ │ │ │ ├── orderController.class
│ │ │ │ ├── ProductController.class
│ │ │ │ └── registController.class
│ │ │ ├── exception
│ │ │ │ ├── golbalException.class
│ │ │ │ └── zdyException.class
│ │ │ ├── interceptor
│ │ │ │ ├── EncodingInterceptor.class
│ │ │ │ └── PrivilageInterceptor.class
│ │ │ ├── mapper
│ │ │ │ ├── AdminuserMapper.class
│ │ │ │ ├── AdminuserMapper.xml
│ │ │ │ ├── CategoryMapper.class
│ │ │ │ ├── CategoryMapper.xml
│ │ │ │ ├── CategorysecondMapper.class
│ │ │ │ ├── CategorysecondMapper.xml
│ │ │ │ ├── MessageMapper.class
│ │ │ │ ├── MessageMapper.xml
│ │ │ │ ├── OrderitemMapper.class
│ │ │ │ ├── OrderitemMapper.xml
│ │ │ │ ├── OrdersMapper.class
│ │ │ │ ├── OrdersMapper.xml
│ │ │ │ ├── ProductMapper.class
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ ├── UserMapper.class
│ │ │ │ └── UserMapper.xml
│ │ │ ├── po
│ │ │ │ ├── Adminuser.class
│ │ │ │ ├── AdminuserExample$Criteria.class
│ │ │ │ ├── AdminuserExample$Criterion.class
│ │ │ │ ├── AdminuserExample$GeneratedCriteria.class
│ │ │ │ ├── AdminuserExample.class
│ │ │ │ ├── Cart.class
│ │ │ │ ├── CartItem.class
│ │ │ │ ├── Category.class
│ │ │ │ ├── CategoryExample$Criteria.class
│ │ │ │ ├── CategoryExample$Criterion.class
│ │ │ │ ├── CategoryExample$GeneratedCriteria.class
│ │ │ │ ├── CategoryExample.class
│ │ │ │ ├── Categorysecond.class
│ │ │ │ ├── CategorysecondExample$Criteria.class
│ │ │ │ ├── CategorysecondExample$Criterion.class
│ │ │ │ ├── CategorysecondExample$GeneratedCriteria.class
│ │ │ │ ├── CategorysecondExample.class
│ │ │ │ ├── Message.class
│ │ │ │ ├── Orderitem.class
│ │ │ │ ├── OrderitemExample$Criteria.class
│ │ │ │ ├── OrderitemExample$Criterion.class
│ │ │ │ ├── OrderitemExample$GeneratedCriteria.class
│ │ │ │ ├── OrderitemExample.class
│ │ │ │ ├── Orders.class
│ │ │ │ ├── OrdersExample$Criteria.class
│ │ │ │ ├── OrdersExample$Criterion.class
│ │ │ │ ├── OrdersExample$GeneratedCriteria.class
│ │ │ │ ├── OrdersExample.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
│ │ │ │ ├── CartService.class
│ │ │ │ ├── CategorySecondService.class
│ │ │ │ ├── CategoryService.class
│ │ │ │ ├── MessageService.class
│ │ │ │ ├── OrderService.class
│ │ │ │ ├── ProductService.class
│ │ │ │ └── UserService.class
│ │ │ ├── serviceImpl
│ │ │ │ ├── CartServiceImpl.class
│ │ │ │ ├── CategorySecondServiceImpl.class
│ │ │ │ ├── CategoryServiceImpl.class
│ │ │ │ ├── MessageServiceImpl.class
│ │ │ │ ├── OrderServiceImpl.class
│ │ │ │ ├── ProductServiceImpl.class
│ │ │ │ └── UserServiceImpl.class
│ │ │ ├── test
│ │ │ │ ├── MybatisUtil.class
│ │ │ │ └── productTest.class
│ │ │ └── Utils
│ │ │ ├── MailUtils$1.class
│ │ │ ├── MailUtils.class
│ │ │ ├── PageBean.class
│ │ │ └── UUIDUtiils.class
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── mybatis
│ │ │ └── mybatis.xml
│ │ ├── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-transaction.xml
│ │ │ └── springMvc.xml
│ │ └── UserValidationMessage.properties
│ ├── config
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── mybatis
│ │ │ └── mybatis.xml
│ │ ├── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-transaction.xml
│ │ │ └── springMvc.xml
│ │ └── UserValidationMessage.properties
│ ├── src
│ │ └── com
│ │ └── shop
│ │ ├── controller
│ │ │ ├── AdminController.java
│ │ │ ├── ajaxController.java
│ │ │ ├── cartController.java
│ │ │ ├── CategorySecondController.java
│ │ │ ├── checkImgController.java
│ │ │ ├── converters
│ │ │ │ └── DateConverters.java
│ │ │ ├── indexController.java
│ │ │ ├── loginController.java
│ │ │ ├── messageController.java
│ │ │ ├── orderController.java
│ │ │ ├── ProductController.java
│ │ │ └── registController.java
│ │ ├── exception
│ │ │ ├── golbalException.java
│ │ │ └── zdyException.java
│ │ ├── interceptor
│ │ │ ├── EncodingInterceptor.java
│ │ │ └── PrivilageInterceptor.java
│ │ ├── mapper
│ │ │ ├── AdminuserMapper.java
│ │ │ ├── AdminuserMapper.xml
│ │ │ ├── CategoryMapper.java
│ │ │ ├── CategoryMapper.xml
│ │ │ ├── CategorysecondMapper.java
│ │ │ ├── CategorysecondMapper.xml
│ │ │ ├── MessageMapper.java
│ │ │ ├── MessageMapper.xml
│ │ │ ├── OrderitemMapper.java
│ │ │ ├── OrderitemMapper.xml
│ │ │ ├── OrdersMapper.java
│ │ │ ├── OrdersMapper.xml
│ │ │ ├── ProductMapper.java
│ │ │ ├── ProductMapper.xml
│ │ │ ├── UserMapper.java
│ │ │ └── UserMapper.xml
│ │ ├── po
│ │ │ ├── AdminuserExample.java
│ │ │ ├── Adminuser.java
│ │ │ ├── CartItem.java
│ │ │ ├── Cart.java
│ │ │ ├── CategoryExample.java
│ │ │ ├── Category.java
│ │ │ ├── CategorysecondExample.java
│ │ │ ├── Categorysecond.java
│ │ │ ├── Message.java
│ │ │ ├── OrderitemExample.java
│ │ │ ├── Orderitem.java
│ │ │ ├── OrdersExample.java
│ │ │ ├── Orders.java
│ │ │ ├── ProductExample.java
│ │ │ ├── Product.java
│ │ │ ├── UserExample.java
│ │ │ └── User.java
│ │ ├── service
│ │ │ ├── CartService.java
│ │ │ ├── CategorySecondService.java
│ │ │ ├── CategoryService.java
│ │ │ ├── MessageService.java
│ │ │ ├── OrderService.java
│ │ │ ├── ProductService.java
│ │ │ └── UserService.java
│ │ ├── serviceImpl
│ │ │ ├── CartServiceImpl.java
│ │ │ ├── CategorySecondServiceImpl.java
│ │ │ ├── CategoryServiceImpl.java
│ │ │ ├── MessageServiceImpl.java
│ │ │ ├── OrderServiceImpl.java
│ │ │ ├── ProductServiceImpl.java
│ │ │ └── UserServiceImpl.java
│ │ ├── test
│ │ │ ├── MybatisUtil.java
│ │ │ └── productTest.java
│ │ └── Utils
│ │ ├── MailUtils.java
│ │ ├── PageBean.java
│ │ └── UUIDUtiils.java
│ └── WebRoot
│ ├── bank_img
│ │ ├── abc.bmp
│ │ ├── bc.bmp
│ │ ├── bcc.bmp
│ │ ├── beijingnongshang.bmp
│ │ ├── bh.bmp
│ │ ├── bj.bmp
│ │ ├── ccb.bmp
│ │ ├── cib.bmp
│ │ ├── cmb.bmp
│ │ ├── cmbc.bmp
│ │ ├── dy.bmp
│ │ ├── gf.bmp
│ │ ├── guangda.bmp
│ │ ├── hx.bmp
│ │ ├── icbc.bmp
│ │ ├── nanjing.bmp
│ │ ├── ningbo.bmp
│ │ ├── pingan.bmp
│ │ ├── post.bmp
│ │ ├── sfz.bmp
│ │ ├── sh.bmp
│ │ ├── shpd.bmp
│ │ ├── zheshang.bmp
│ │ └── zx.bmp
│ ├── ckeditor
│ │ ├── adapters
│ │ │ └── jquery.js
│ │ ├── build-config.js
│ │ ├── CHANGES.md
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── az.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── oc.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── LICENSE.md
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── oc.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ ├── hidpi
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── logo_ckeditor.png
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ │ ├── colordialog
│ │ │ │ └── dialogs
│ │ │ │ ├── colordialog.css
│ │ │ │ └── colordialog.js
│ │ │ ├── copyformatting
│ │ │ │ ├── cursors
│ │ │ │ │ ├── cursor-disabled.svg
│ │ │ │ │ └── cursor.svg
│ │ │ │ └── styles
│ │ │ │ └── copyformatting.css
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── div
│ │ │ │ └── dialogs
│ │ │ │ └── div.js
│ │ │ ├── find
│ │ │ │ └── dialogs
│ │ │ │ └── find.js
│ │ │ ├── flash
│ │ │ │ ├── dialogs
│ │ │ │ │ └── flash.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── forms
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── button.js
│ │ │ │ │ ├── checkbox.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── hiddenfield.js
│ │ │ │ │ ├── radio.js
│ │ │ │ │ ├── select.js
│ │ │ │ │ ├── textarea.js
│ │ │ │ │ └── textfield.js
│ │ │ │ └── images
│ │ │ │ └── hiddenfield.gif
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── iframe
│ │ │ │ ├── dialogs
│ │ │ │ │ └── iframe.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── image
│ │ │ │ ├── dialogs
│ │ │ │ │ └── image.js
│ │ │ │ └── images
│ │ │ │ └── noimage.png
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ │ ├── liststyle
│ │ │ │ └── dialogs
│ │ │ │ └── liststyle.js
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── icon-rtl.png
│ │ │ │ ├── icon.png
│ │ │ │ └── icon-rtl.png
│ │ │ ├── pagebreak
│ │ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ └── default.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scayt
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── toolbar.css
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ └── skins
│ │ │ │ └── moono-lisa
│ │ │ │ └── scayt.css
│ │ │ ├── showblocks
│ │ │ │ └── images
│ │ │ │ ├── block_address.png
│ │ │ │ ├── block_blockquote.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ └── block_pre.png
│ │ │ ├── smiley
│ │ │ │ ├── dialogs
│ │ │ │ │ └── smiley.js
│ │ │ │ └── images
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angel_smile.png
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── angry_smile.png
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── broken_heart.png
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── confused_smile.png
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── cry_smile.png
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── devil_smile.png
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ ├── embarrassed_smile.png
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── envelope.png
│ │ │ │ ├── heart.gif
│ │ │ │ ├── heart.png
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── kiss.png
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── omg_smile.png
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── regular_smile.png
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── sad_smile.png
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── shades_smile.png
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── teeth_smile.png
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_down.png
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── thumbs_up.png
│ │ │ │ ├── tongue_smile.gif
│ │ │ │ ├── tongue_smile.png
│ │ │ │ ├── tounge_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.png
│ │ │ │ ├── wink_smile.gif
│ │ │ │ └── wink_smile.png
│ │ │ ├── specialchar
│ │ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de-ch.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── oc.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ │ ├── table
│ │ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ │ ├── tabletools
│ │ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ │ ├── templates
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── templates.css
│ │ │ │ │ └── templates.js
│ │ │ │ └── templates
│ │ │ │ ├── default.js
│ │ │ │ └── images
│ │ │ │ ├── template1.gif
│ │ │ │ ├── template2.gif
│ │ │ │ └── template3.gif
│ │ │ └── wsc
│ │ │ ├── dialogs
│ │ │ │ ├── ciframe.html
│ │ │ │ ├── tmpFrameset.html
│ │ │ │ ├── wsc.css
│ │ │ │ ├── wsc_ie.js
│ │ │ │ └── wsc.js
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── skins
│ │ │ └── moono-lisa
│ │ │ └── wsc.css
│ │ ├── README.md
│ │ ├── samples
│ │ │ ├── css
│ │ │ │ └── samples.css
│ │ │ ├── img
│ │ │ │ ├── github-top.png
│ │ │ │ ├── header-bg.png
│ │ │ │ ├── header-separator.png
│ │ │ │ ├── logo.png
│ │ │ │ └── navigation-tip.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── sample.js
│ │ │ │ └── sf.js
│ │ │ ├── old
│ │ │ │ ├── ajax.html
│ │ │ │ ├── api.html
│ │ │ │ ├── appendto.html
│ │ │ │ ├── assets
│ │ │ │ │ ├── inlineall
│ │ │ │ │ │ └── logo.png
│ │ │ │ │ ├── outputxhtml
│ │ │ │ │ │ └── outputxhtml.css
│ │ │ │ │ ├── posteddata.php
│ │ │ │ │ ├── sample.jpg
│ │ │ │ │ └── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ │ ├── datafiltering.html
│ │ │ │ ├── dialog
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── my_dialog.js
│ │ │ │ │ └── dialog.html
│ │ │ │ ├── divreplace.html
│ │ │ │ ├── enterkey
│ │ │ │ │ └── enterkey.html
│ │ │ │ ├── htmlwriter
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── outputforflash
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ │ ├── outputforflash.html
│ │ │ │ │ └── outputhtml.html
│ │ │ │ ├── index.html
│ │ │ │ ├── inlineall.html
│ │ │ │ ├── inlinebycode.html
│ │ │ │ ├── inlinetextarea.html
│ │ │ │ ├── jquery.html
│ │ │ │ ├── magicline
│ │ │ │ │ └── magicline.html
│ │ │ │ ├── readonly.html
│ │ │ │ ├── replacebyclass.html
│ │ │ │ ├── replacebycode.html
│ │ │ │ ├── sample.css
│ │ │ │ ├── sample.js
│ │ │ │ ├── sample_posteddata.php
│ │ │ │ ├── tabindex.html
│ │ │ │ ├── toolbar
│ │ │ │ │ └── toolbar.html
│ │ │ │ ├── uicolor.html
│ │ │ │ ├── uilanguages.html
│ │ │ │ ├── wysiwygarea
│ │ │ │ │ └── fullpage.html
│ │ │ │ └── xhtmlstyle.html
│ │ │ └── toolbarconfigurator
│ │ │ ├── css
│ │ │ │ └── fontello.css
│ │ │ ├── font
│ │ │ │ ├── config.json
│ │ │ │ ├── fontello.eot
│ │ │ │ ├── fontello.svg
│ │ │ │ ├── fontello.ttf
│ │ │ │ ├── fontello.woff
│ │ │ │ └── LICENSE.txt
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── abstracttoolbarmodifier.js
│ │ │ │ ├── fulltoolbareditor.js
│ │ │ │ ├── toolbarmodifier.js
│ │ │ │ └── toolbartextmodifier.js
│ │ │ └── lib
│ │ │ └── codemirror
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── LICENSE
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ │ ├── skins
│ │ │ └── moono-lisa
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── spinner.gif
│ │ │ └── readme.md
│ │ └── styles.js
│ ├── css
│ │ ├── BeatPicker.min.css
│ │ ├── cart.css
│ │ ├── common.css
│ │ ├── datepicker.css
│ │ ├── dtree.css
│ │ ├── easy-responsive-tabs.css
│ │ ├── global.css
│ │ ├── index.css
│ │ ├── left.css
│ │ ├── login.css
│ │ ├── myCommon.css
│ │ ├── myStyle.css
│ │ ├── product.css
│ │ ├── productShow.css
│ │ ├── register.css
│ │ ├── slider2.css
│ │ ├── slider.css
│ │ ├── Style1.css
│ │ ├── style2.css
│ │ ├── style.css
│ │ ├── tcal.css
│ │ └── WdatePicker.css
│ ├── image
│ │ ├── blank.gif
│ │ ├── cart.gif
│ │ ├── common.gif
│ │ ├── footer.jpg
│ │ ├── header.jpg
│ │ ├── login.jpg
│ │ ├── My97DatePicker.htm
│ │ ├── product.gif
│ │ └── r___________renleipic_01
│ │ ├── 15.gif
│ │ ├── footer.jpg
│ │ ├── header.jpg
│ │ └── logo.gif
│ ├── images
│ │ ├── article.gif
│ │ ├── btnbg.png
│ │ ├── buttonbg.png
│ │ ├── cart.gif
│ │ ├── common.gif
│ │ ├── cs10004.jpg
│ │ ├── delivery-img1.jpg
│ │ ├── delivery-img2.jpg
│ │ ├── delivery-img3.jpg
│ │ ├── dialog_overlay.png
│ │ ├── dribbble.png
│ │ ├── error.jpg
│ │ ├── facebook.png
│ │ ├── finalbutton.gif
│ │ ├── gif53_029.gif
│ │ ├── icon2.png
│ │ ├── icon3.png
│ │ ├── icon4.png
│ │ ├── i_del.gif
│ │ ├── i_edit.gif
│ │ ├── index.gif
│ │ ├── index.jpg
│ │ ├── info.gif
│ │ ├── libg.png
│ │ ├── light.png
│ │ ├── linkedin.png
│ │ ├── loading_bar.gif
│ │ ├── loading_icon.gif
│ │ ├── login_03.gif
│ │ ├── loginbg1.png
│ │ ├── login.gif
│ │ ├── logininfo.png
│ │ ├── loginpassword.png
│ │ ├── loginsj.png
│ │ ├── loginuser.png
│ │ ├── logo4.png
│ │ ├── logo.png
│ │ ├── member.gif
│ │ ├── message.gif
│ │ ├── mis_01.jpg
│ │ ├── mis_05a.jpg
│ │ ├── mis_05b.jpg
│ │ ├── mis_05c.jpg
│ │ ├── order.gif
│ │ ├── password.gif
│ │ ├── product.gif
│ │ ├── register.gif
│ │ ├── review.gif
│ │ ├── shim.gif
│ │ ├── skype.png
│ │ ├── tcbg.gif
│ │ ├── top_100.jpg
│ │ ├── top_100.png
│ │ ├── tree
│ │ │ ├── base.gif
│ │ │ ├── cd.gif
│ │ │ ├── empty.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── globe.gif
│ │ │ ├── imgfolder.gif
│ │ │ ├── joinbottom.gif
│ │ │ ├── join.gif
│ │ │ ├── line.gif
│ │ │ ├── minusbottom.gif
│ │ │ ├── minus.gif
│ │ │ ├── musicfolder.gif
│ │ │ ├── nolines_minus.gif
│ │ │ ├── nolines_plus.gif
│ │ │ ├── page.gif
│ │ │ ├── plusbottom.gif
│ │ │ ├── plus.gif
│ │ │ ├── question.gif
│ │ │ └── trash.gif
│ │ └── twitter.png
│ ├── js
│ │ ├── Ajax.js
│ │ ├── BeatPicker.min.js
│ │ ├── cloud.js
│ │ ├── CommonUtils.js
│ │ ├── dtree.js
│ │ ├── easing.js
│ │ ├── easyResponsiveTabs.js
│ │ ├── jquery-1.8.3.js
│ │ ├── jquery.accordion.js
│ │ ├── jquery.easing.js
│ │ ├── js.js
│ │ ├── move-top.js
│ │ ├── script.js
│ │ ├── slides.min.jquery.js
│ │ ├── startstop-slider.js
│ │ └── tcal.js
│ ├── jsp
│ │ ├── left.jsp
│ │ ├── right.jsp
│ │ └── top.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── products
│ │ ├── 0ad46e8a-1807-416a-96bb-c6ce04afd5ff0004.jpg
│ │ ├── 1dcf0d68-5717-448e-816e-7ebf65e9583a20181122062410.jpg
│ │ ├── 1e4a6123-962d-422a-b3d9-713cf917f24e0007.jpg
│ │ ├── 216c0eaf-3f94-4f91-8fe0-484f764622c21000.jpg
│ │ ├── 2c339cce-8e9e-462a-ba75-2633be204ea60002.jpg
│ │ ├── 40cc2f0f-d292-4acd-885a-a9a2e8f7a57f20181122064717.jpg
│ │ ├── 5fab14f2-2532-4529-90b0-6e65b2bf4feb20181122062127.jpg
│ │ ├── 60849188-8f40-4d69-ab2f-15102fcaaebe0001.jpg
│ │ ├── 63f09645-c7a1-4834-a6ff-e3731a7b51f820181122063109.jpg
│ │ ├── 7103de05-ed39-4cb2-842a-660303933c20u=1307429950,572500159&fm=27&gp=0.jpg
│ │ ├── 75247e27-809f-47b9-82a1-4a8122045d80u=831971558,1559669327&fm=58&bpow=600&bpoh=600.jpg
│ │ ├── 78877fdc-41ae-4646-9bae-c5fe968679ce20181209024808.jpeg
│ │ ├── 9fb10bd1-9ebc-4068-97a5-ef32fda557290008.jpg
│ │ ├── a4f0db6a-e18a-4182-9992-c09d77b1cdb1u=3068668599,2651578214&fm=58&bpow=450&bpoh=300.jpg
│ │ ├── aa8949d9-083f-4a48-8772-5fe5524095d720181122064917.jpg
│ │ ├── ad6a2586-81a0-4d0c-94a3-396fc183a8d5laoshu.jpg
│ │ ├── b27b1e23-494c-4be8-a39f-4913e21300e420181122064535.jpg
│ │ ├── b6b37dba-6ab0-4156-b434-f71ebac649c6c75c10385343fbf2849eb1b1bb7eca8064388ff5.jpg
│ │ ├── bba102ca-3699-4a6b-8d04-a0879b95aa3fu=3523400314,1092009656&fm=58&bpow=250&bpoh=177.jpg
│ │ ├── c75c10385343fbf2849eb1b1bb7eca8064388ff5.jpg
│ │ ├── d7271709-f0f7-438c-b914-80d226f95687u=585336170,3913415700&fm=58.jpg
│ │ ├── daeca39f-da98-43ef-925d-ecf247ff361220181122064621.jpg
│ │ ├── dd515ca6-7e9e-429a-99c8-ead0d4f41aa8u=946221869,1962949722&fm=58.jpg
│ │ ├── dea43f3c-6f85-42bb-bbe8-37406d55f34f1001.jpg
│ │ ├── df32868a-fd63-44b9-9a71-4df3ef83c3d2u=861903154,2429196093&fm=27&gp=0.jpg
│ │ ├── e8a206cc-006d-4232-9398-f8f227ae0e7d20181122062010.jpg
│ │ ├── ee9a02c6-c463-4872-9c39-6552abf2a1a020181123092208.jpg
│ │ ├── eeaaada5-99a8-4d40-ad0d-076deeba151f0003.jpg
│ │ └── ef7c9826-733d-4eae-aeef-9d7382906ddcu=2032935164,2077203867&fm=58&bpow=700&bpoh=489.jpg
│ └── WEB-INF
│ ├── jsp
│ │ ├── about.jsp
│ │ ├── admin
│ │ │ ├── category
│ │ │ │ ├── add.jsp
│ │ │ │ ├── edit.jsp
│ │ │ │ └── list.jsp
│ │ │ ├── categorysecond
│ │ │ │ ├── add.jsp
│ │ │ │ ├── edit.jsp
│ │ │ │ └── list.jsp
│ │ │ ├── home.jsp
│ │ │ ├── index.jsp
│ │ │ ├── message
│ │ │ │ └── list.jsp
│ │ │ ├── order
│ │ │ │ └── list.jsp
│ │ │ ├── product
│ │ │ │ ├── add.jsp
│ │ │ │ ├── edit.jsp
│ │ │ │ └── list.jsp
│ │ │ └── user
│ │ │ └── list.jsp
│ │ ├── bottomCommon.jsp
│ │ ├── cart.jsp
│ │ ├── category.jsp
│ │ ├── contact.jsp
│ │ ├── delivery.jsp
│ │ ├── error.jsp
│ │ ├── index.jsp
│ │ ├── indexnew.jsp
│ │ ├── leftCategoryCommon.jsp
│ │ ├── login.jsp
│ │ ├── menu.jsp
│ │ ├── messageList.jsp
│ │ ├── msg.jsp
│ │ ├── order.jsp
│ │ ├── orderList.jsp
│ │ ├── product.jsp
│ │ ├── productList.jsp
│ │ ├── regist.jsp
│ │ ├── searchProduct.jsp
│ │ ├── searchProductnew.jsp
│ │ └── topCommon.jsp
│ ├── lib
│ │ ├── asm-3.3.1.jar
│ │ ├── c3p0-0.9.1.jar
│ │ ├── cglib-2.2.2.jar
│ │ ├── ckeditor-java-core-3.5.3.jar
│ │ ├── commons-fileupload-1.3.1.jar
│ │ ├── commons-io-2.5.jar
│ │ ├── commons-logging-1.1.1.jar
│ │ ├── com.springsource.org.aopalliance-1.0.0.jar
│ │ ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
│ │ ├── hibernate-validator-4.1.0.Final.jar
│ │ ├── javassist-3.17.1-GA.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jstl.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── log4j-api-2.0-rc1.jar
│ │ ├── log4j-core-2.0-rc1.jar
│ │ ├── mail.jar
│ │ ├── mybatis-3.2.7.jar
│ │ ├── mybatis-spring-1.2.3.jar
│ │ ├── mysql-connector-java-3.1.12-bin.jar
│ │ ├── slf4j-api-1.7.5.jar
│ │ ├── slf4j-log4j12-1.7.5.jar
│ │ ├── spring-aop-3.2.0.M1.jar
│ │ ├── spring-asm-3.2.0.M1.jar
│ │ ├── spring-aspects-3.2.0.M1.jar
│ │ ├── spring-beans-3.2.0.M1.jar
│ │ ├── spring-context-3.2.0.M1.jar
│ │ ├── spring-context-support-3.2.0.M1.jar
│ │ ├── spring-core-3.2.0.M1.jar
│ │ ├── spring-expression-3.2.0.M1.jar
│ │ ├── spring-instrument-3.2.0.M1.jar
│ │ ├── spring-instrument-tomcat-3.2.0.M1.jar
│ │ ├── spring-jdbc-3.2.0.M1.jar
│ │ ├── spring-jms-3.2.0.M1.jar
│ │ ├── spring-orm-3.2.0.M1.jar
│ │ ├── spring-oxm-3.2.0.M1.jar
│ │ ├── spring-struts-3.2.0.M1.jar
│ │ ├── spring-test-3.2.0.M1.jar
│ │ ├── spring-tx-3.2.0.M1.jar
│ │ ├── spring-web-3.2.0.M1.jar
│ │ ├── spring-webmvc-3.2.0.M1.jar
│ │ ├── spring-webmvc-portlet-3.2.0.M1.jar
│ │ ├── standard.jar
│ │ └── validation-api-1.0.0.GA.jar
│ └── web.xml
├── shop.sql
├── 数据库截图
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ └── 6.jpg
└── 《程序开发框架技术》实践报告(李佳小组).doc
156 directories, 847 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论