实例介绍
部分数据库 CREATE TABLE `adminuser` ( `auid` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `uid` int(11) NOT NULL, PRIMARY KEY (`auid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
【实例截图】
【核心代码】
4744300845238313323.zip
├── 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
│ │ ├── pay
│ │ │ ├── MyConfig.class
│ │ │ └── WXPayUtil.class
│ │ ├── 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
├── database
│ └── shop.sql
├── 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
│ ├── pay
│ │ ├── MyConfig.java
│ │ └── WXPayUtil.java
│ ├── 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
│ ├── pay_1.jpg
│ ├── 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
│ ├── bg.jpg
│ ├── bg.png
│ ├── blank.gif
│ ├── cart.gif
│ ├── common.gif
│ ├── footer.jpg
│ ├── header.jpg
│ ├── login.jpg
│ ├── logo.gif
│ ├── My97DatePicker.htm
│ ├── n.jpg
│ ├── product.gif
│ └── r___________renleipic_01
│ ├── 15.gif
│ ├── footer.jpg
│ ├── header.jpg
│ ├── logo.gif
│ ├── logo.jpg
│ ├── logo.png
│ └── product.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
│ ├── pay_1.jpg
│ ├── pay.png
│ ├── 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
├── pay_jsp
│ ├── pay.jsp
│ ├── pay_succeed.jsp
│ └── psy_fail.jsp
├── products
│ ├── 02d9daa6-3a60-4682-b9a5-bda01c50554bhuawei.jpg
│ ├── 03e6eda2-5064-4930-ac15-d312524e42ffcs30003.png
│ ├── 09a2aa49-e7e8-4c91-99d8-15b02f5eb03ccs10006.jpg
│ ├── 1
│ │ ├── 001.jpg
│ │ ├── 002.jpg
│ │ ├── 004.jpg
│ │ ├── 005.jpg
│ │ ├── 007.jpg
│ │ ├── 008.jpg
│ │ ├── 009.jpg
│ │ ├── 010.jpg
│ │ ├── 011.jpg
│ │ ├── 013.jpg
│ │ ├── 020.jpg
│ │ ├── 021.jpg
│ │ ├── 110.jpg
│ │ ├── 111111.jpg
│ │ ├── 1125200.jpg
│ │ ├── 116.jpg
│ │ ├── 1240976570937.jpg
│ │ ├── 1240976719406.jpg
│ │ ├── 1240976845953.jpg
│ │ ├── 1240976972828.jpg
│ │ ├── 1240977118281.jpg
│ │ ├── 1240977259218.jpg
│ │ ├── 1240977376843.jpg
│ │ ├── 1240977571500.jpg
│ │ ├── 1240977693343.jpg
│ │ ├── 1240977834281.jpg
│ │ ├── 1240977985890.jpg
│ │ ├── 1240978102203.jpg
│ │ ├── 1240978255578.jpg
│ │ ├── 1240978328109.jpg
│ │ ├── 1240978423515.jpg
│ │ ├── 1240978535171.jpg
│ │ ├── 1240978682265.jpg
│ │ ├── 1240978803093.jpg
│ │ ├── 1240978897078.jpg
│ │ ├── 1240978984796.jpg
│ │ ├── 1240979084703.jpg
│ │ ├── 1240979191828.jpg
│ │ ├── 1240979279984.jpg
│ │ ├── 1240979346734.jpg
│ │ ├── 1240979430609.jpg
│ │ ├── 1240979505265.jpg
│ │ ├── 1240979642234.jpg
│ │ ├── 1299924815563.jpg
│ │ ├── 1333705654585.jpg
│ │ ├── 133.jpg
│ │ ├── 1375608947936.jpg
│ │ ├── 1375609045552.jpg
│ │ ├── 1375609524594.jpg
│ │ ├── 1375610270952.jpg
│ │ ├── 210.jpg
│ │ ├── 211.jpg
│ │ ├── 212.jpg
│ │ ├── 213.jpg
│ │ ├── 217.jpg
│ │ ├── 22862056-1_w_1.jpg
│ │ ├── 230.jpg
│ │ ├── 2.jpg
│ │ ├── 333.jpg
│ │ ├── 3.jpg
│ │ ├── 4d18e974-60e9-445d-a65a-bd87c9523287.jpg
│ │ ├── 501.jpg
│ │ ├── 507171_3_pic310_1129.jpg
│ │ ├── 5s.jpg
│ │ ├── aaa.jpg
│ │ ├── big_011.jpg
│ │ ├── big_01.jpg
│ │ ├── big_03.jpg
│ │ ├── big_052.jpg
│ │ ├── big_06.jpg
│ │ ├── big_09.jpg
│ │ ├── hongmi.jpg
│ │ ├── htc1.jpg
│ │ ├── huawei.jpg
│ │ ├── ipad.jpg
│ │ ├── iphone5c.jpg
│ │ ├── iphone8.jpg
│ │ ├── jmr.jpg
│ │ ├── liangxie.jpg
│ │ ├── nikon1.jpg
│ │ ├── note2.jpg
│ │ ├── sd0.jpg
│ │ ├── small_00.jpg
│ │ ├── small_010.jpg
│ │ ├── small_011.jpg
│ │ ├── small_0122.jpg
│ │ ├── small_012.jpg
│ │ ├── small_017.jpg
│ │ ├── small_01.jpg
│ │ ├── small_022.jpg
│ │ ├── small_02.jpg
│ │ ├── small_03.jpg
│ │ ├── small_04.jpg
│ │ ├── small_05.jpg
│ │ ├── small_06.jpg
│ │ ├── small_08.jpg
│ │ ├── small_09.jpg
│ │ ├── sx1.jpg
│ │ ├── T159.jpg
│ │ ├── ttt.jpg
│ │ ├── tuoxie0.jpg
│ │ ├── tuoxie2.jpg
│ │ ├── xz0.jpg
│ │ └── zxc.jpg
│ ├── 21c0dcc5-06ef-4679-8c40-62554f250217liangxie.jpg
│ ├── 226d27a1-6170-4e5e-9dd0-293829ef7d91cs10004.jpg
│ ├── 22c84e5b-62dd-427f-8dbd-77d46bb83df7iphone8.jpg
│ ├── 36ce16bd-2d66-4fbc-8c8e-117dc4acd01attt.jpg
│ ├── 405964b4-bf81-470c-8ee6-fed1aaf35b4194d9458f-6b65-4b1c-9577-0928a4818de0.jpg
│ ├── 543d14c6-daa9-47c8-a664-64d710636a17liangxie.jpg
│ ├── 5574dece-8cb7-42bf-a67f-2705bf3d3750zxc.jpg
│ ├── 5cb1e8cd-9a5f-4f11-9e2f-6886a66a3f67small_03.jpg
│ ├── 5d992132-af7e-4b3c-9b85-2390ccb10170cs10001.jpg
│ ├── 61e7a560-b44e-49dc-a36a-8a44e43b0f84021.jpg
│ ├── 6d9eb609-f29e-486f-85a1-c8a65403ba5ehuawei.jpg
│ ├── 7354dcbc-550e-4dfb-9452-a8e216f3577a020.jpg
│ ├── 74dfc4c4-1a76-4a80-9aa6-4ab34db66d011375609045552.jpg
│ ├── 7cd5b45f-efe0-4277-9ba9-5b4c7b5fb8a7sd0.jpg
│ ├── 822ef92c-769e-45f9-bfc8-190447e035feiphone8.jpg
│ ├── 8e2a3e7e-c8b1-460f-aa66-16585353940diphone8.jpg
│ ├── a2af9384-ea87-406c-bc60-d6f496e282ddcs10002.jpg
│ ├── a36472e0-ae79-4a3b-8eae-39aefdb97095cs50006.png
│ ├── a7469e51-97d2-4f0b-bde6-deefb2d44b3b501.jpg
│ ├── d6577bb8-8561-4ac2-938c-fd153f2f4ffanvxie.jpg
│ ├── d6c6cfce-663d-46ad-92ef-5cd232a2fa79cs40010.png
│ ├── dbf99071-b2f5-479a-b567-2797d5522dcccs30002.png
│ ├── e5cba2c2-60d5-4212-aaa9-f58fea171efasmall_0122.jpg
│ ├── f5fca230-0214-486e-a033-cda9c2789245big_03.jpg
│ ├── f8b8a793-39d6-4d06-8524-f8fc2c6f3cb9huawei.jpg
│ └── fc34a578-6198-4ba4-bb4c-644fa2cab8f1cs20007.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
│ └── wxpay-sdk-0.0.3.jar
└── web.xml
158 directories, 962 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论