实例介绍
基于JSP的网站开发,下载后解压,按照一般JSP网站运行的配置,直接运行
【实例截图】
【核心代码】
4744302542983485111.zip
└── sharings
├── hibernate.reveng.xml
├── sharings_new.sql
├── SharingS数据库表.doc
├── Sharings需求分析().doc
├── SharingS需求分析.doc
├── src
│ ├── applicationContext.xml
│ ├── com
│ │ ├── config
│ │ │ └── SessionConfig.java
│ │ ├── sharings
│ │ │ ├── action
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminAction.java
│ │ │ │ │ └── AdminReplyAction.java
│ │ │ │ ├── brand
│ │ │ │ │ └── BrandAction.java
│ │ │ │ ├── conorder
│ │ │ │ │ ├── ConOrderAction.java
│ │ │ │ │ └── OrdersAction.java
│ │ │ │ ├── hs
│ │ │ │ │ └── hsAction.java
│ │ │ │ ├── message
│ │ │ │ │ └── MessageAction.java
│ │ │ │ ├── OdcsAction.java
│ │ │ │ ├── order
│ │ │ │ │ ├── OrderAction.java
│ │ │ │ │ └── test.java
│ │ │ │ ├── ShMiaoshaAction.java
│ │ │ │ ├── ShMiaoshaOldAction.java
│ │ │ │ ├── ShProductAction.java
│ │ │ │ ├── ShSecLevelAction.java
│ │ │ │ └── ShUserAction.java
│ │ │ ├── dao
│ │ │ │ ├── ShAdminDAO.java
│ │ │ │ ├── ShBrandDAO.java
│ │ │ │ ├── ShJobMessageDAO.java
│ │ │ │ ├── ShMessageDAO.java
│ │ │ │ ├── ShMiaoshaDAO.java
│ │ │ │ ├── ShMiaoshaOldDAO.java
│ │ │ │ ├── ShNewsDAO.java
│ │ │ │ ├── ShOdcsDAO.java
│ │ │ │ ├── ShOrderDAO.java
│ │ │ │ ├── ShOrderDetailDAO.java
│ │ │ │ ├── ShProductDAO.java
│ │ │ │ ├── ShReplyDAO.java
│ │ │ │ ├── ShSecondLevelDAO.java
│ │ │ │ ├── ShUserDAO.java
│ │ │ │ └── ShUserMiaoshaDAO.java
│ │ │ ├── service
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminReplyService.java
│ │ │ │ │ └── AdminService.java
│ │ │ │ ├── brand
│ │ │ │ │ ├── BrandService.java
│ │ │ │ │ └── test.java
│ │ │ │ ├── conorder
│ │ │ │ │ ├── ConOrderService.java
│ │ │ │ │ └── OrdersService.java
│ │ │ │ ├── hs
│ │ │ │ │ ├── jobService.java
│ │ │ │ │ └── newService.java
│ │ │ │ ├── message
│ │ │ │ │ └── MessageService.java
│ │ │ │ ├── OdcsService.java
│ │ │ │ ├── order
│ │ │ │ │ └── OrderService.java
│ │ │ │ ├── ShMiaoshaOldService.java
│ │ │ │ ├── ShMiaoshaService.java
│ │ │ │ ├── ShProductService.java
│ │ │ │ ├── ShSecLevelService.java
│ │ │ │ └── ShUserService.java
│ │ │ └── vo
│ │ │ ├── ShAdmin.hbm.xml
│ │ │ ├── ShAdmin.java
│ │ │ ├── ShBrand.hbm.xml
│ │ │ ├── ShBrand.java
│ │ │ ├── ShJobMessage.hbm.xml
│ │ │ ├── ShJobMessage.java
│ │ │ ├── ShMessage.hbm.xml
│ │ │ ├── ShMessage.java
│ │ │ ├── ShMiaosha.hbm.xml
│ │ │ ├── ShMiaosha.java
│ │ │ ├── ShMiaoshaOld.hbm.xml
│ │ │ ├── ShMiaoshaOld.java
│ │ │ ├── ShNews.hbm.xml
│ │ │ ├── ShNews.java
│ │ │ ├── ShOdcs.hbm.xml
│ │ │ ├── ShOdcs.java
│ │ │ ├── ShOrderDetail.hbm.xml
│ │ │ ├── ShOrderDetail.java
│ │ │ ├── ShOrder.hbm.xml
│ │ │ ├── ShOrder.java
│ │ │ ├── ShProduct.hbm.xml
│ │ │ ├── ShProduct.java
│ │ │ ├── ShReply.hbm.xml
│ │ │ ├── ShReply.java
│ │ │ ├── ShSecondLevel.hbm.xml
│ │ │ ├── ShSecondLevel.java
│ │ │ ├── ShShopCart.java
│ │ │ ├── ShUser.hbm.xml
│ │ │ ├── ShUser.java
│ │ │ ├── ShUserMiaosha.hbm.xml
│ │ │ └── ShUserMiaosha.java
│ │ └── util
│ │ ├── Page.java
│ │ ├── PageTools.java
│ │ ├── PageUtil.java
│ │ ├── Result.java
│ │ └── SortPrior.java
│ ├── struts.xml
│ └── xmls
│ ├── adminorder_xml
│ │ ├── applicationContext-orders.xml
│ │ └── struts-orders.xml
│ ├── admin_xml
│ │ ├── applicationContext-admin.xml
│ │ ├── struts-adminreply.xml
│ │ └── struts-admin.xml
│ ├── conorder_xml
│ │ ├── applicationContext-conorder.xml
│ │ └── struts-conorder.xml
│ ├── join_xml
│ │ ├── applicationContext-hs.xml
│ │ └── struts-hs.xml
│ ├── message_xml
│ │ ├── applicationContext-message.xml
│ │ └── struts-message.xml
│ ├── order_xml
│ │ ├── applicationContext-order.xml
│ │ └── struts-order.xml
│ ├── product_xml
│ │ ├── applicationContext-product.xml
│ │ └── struts-product.xml
│ ├── seclevel_xml
│ │ ├── applicationContext-seclevel.xml
│ │ └── struts-seclevel.xml
│ ├── shmiaoshaold_xml
│ │ ├── applicationContext-miaoshaold.xml
│ │ └── struts-miaoshaold.xml
│ ├── shmiaosha_xml
│ │ ├── applicationContext-miaosha.xml
│ │ └── struts-miaosha.xml
│ ├── slevp_xml
│ │ ├── applicationContext-slevp.xml
│ │ ├── struts-brand.xml
│ │ └── struts-odcs.xml
│ └── user_xml
│ ├── applicationContext-user.xml
│ └── struts-ShUser.xml
└── WebRoot
├── admin
│ ├── addAdmin.jsp
│ ├── adminInfomation.jsp
│ ├── admin.jsp
│ ├── allUserInfo1.jsp
│ ├── allUserInfo.jsp
│ ├── changePsd.jsp
│ ├── css
│ │ ├── admin.css
│ │ ├── images
│ │ │ ├── add.gif
│ │ │ ├── ad.gif
│ │ │ ├── back.gif
│ │ │ ├── bg.gif
│ │ │ ├── bigsize.jpg
│ │ │ ├── bootnbg.jpg
│ │ │ ├── bullet.gif
│ │ │ ├── buttom_bgs.gif
│ │ │ ├── buttom-copy-bg.gif
│ │ │ ├── buttom_left2.gif
│ │ │ ├── buttom-left.gif
│ │ │ ├── buttom_right2.gif
│ │ │ ├── buttom-right.gif
│ │ │ ├── card.jpg
│ │ │ ├── check-out_.gif
│ │ │ ├── close.gif
│ │ │ ├── content-bg.gif
│ │ │ ├── content-bg-line.gif
│ │ │ ├── database_import_.gif
│ │ │ ├── DefaultDocs.gif
│ │ │ ├── defind.gif
│ │ │ ├── delete_6.gif
│ │ │ ├── delete.gif
│ │ │ ├── del.jpg
│ │ │ ├── edit.gif
│ │ │ ├── ershou_1.gif
│ │ │ ├── ershou_2.gif
│ │ │ ├── format.gif
│ │ │ ├── fox.css
│ │ │ ├── g.gif
│ │ │ ├── !.gif
│ │ │ ├── gw2.gif
│ │ │ ├── gw.gif
│ │ │ ├── icon2_004.png
│ │ │ ├── icon2_089.png
│ │ │ ├── icon2_090.png
│ │ │ ├── icon-demo.gif
│ │ │ ├── icon-login-seaver.gif
│ │ │ ├── icon-mail2.gif
│ │ │ ├── icon-phone.gif
│ │ │ ├── image_1.gif
│ │ │ ├── image_(add)6.gif
│ │ │ ├── imagedelete.gif
│ │ │ ├── imageedit.gif
│ │ │ ├── ipsecurity.gif
│ │ │ ├── l1b3.gif
│ │ │ ├── l1b4.gif
│ │ │ ├── l1b5.gif
│ │ │ ├── left-bg.gif
│ │ │ ├── left-top-right.gif
│ │ │ ├── line2.jpg
│ │ │ ├── linkspic3.gif
│ │ │ ├── linkspic6.gif
│ │ │ ├── lm.gif
│ │ │ ├── lminfo.gif
│ │ │ ├── login_bg.jpg
│ │ │ ├── Login_but.gif
│ │ │ ├── login-buttom-bg.gif
│ │ │ ├── login-content-bg.gif
│ │ │ ├── login-top-bg.gif
│ │ │ ├── login-wel.gif
│ │ │ ├── logo.gif
│ │ │ ├── logo.png
│ │ │ ├── luck.gif
│ │ │ ├── mail_leftbg.gif
│ │ │ ├── mail_rightbg.gif
│ │ │ ├── menu_bg1.gif
│ │ │ ├── menu_bg2.gif
│ │ │ ├── menu_bg.gif
│ │ │ ├── menu_bgs.gif
│ │ │ ├── menu_topimg.gif
│ │ │ ├── menu_topline.gif
│ │ │ ├── mime.gif
│ │ │ ├── nav-right-bg.gif
│ │ │ ├── news-title-bg.gif
│ │ │ ├── ok.gif
│ │ │ ├── OK.jpg
│ │ │ ├── out.gif
│ │ │ ├── password.gif
│ │ │ ├── pic10.gif
│ │ │ ├── pic11.gif
│ │ │ ├── pic12.gif
│ │ │ ├── pic13.gif
│ │ │ ├── pic14.gif
│ │ │ ├── pic15.gif
│ │ │ ├── pic16.gif
│ │ │ ├── pic17.gif
│ │ │ ├── pic18.gif
│ │ │ ├── pic19.gif
│ │ │ ├── pic1.gif
│ │ │ ├── pic21.gif
│ │ │ ├── pic22.gif
│ │ │ ├── pic23.gif
│ │ │ ├── pic24.gif
│ │ │ ├── pic25.gif
│ │ │ ├── pic26.gif
│ │ │ ├── pic5.gif
│ │ │ ├── pic6.gif
│ │ │ ├── pic7.gif
│ │ │ ├── pic8.gif
│ │ │ ├── pic9.gif
│ │ │ ├── Redirects.gif
│ │ │ ├── report2_(add).gif
│ │ │ ├── report2_(delete).gif
│ │ │ ├── right_smbg.jpg
│ │ │ ├── servicezhgb2312.gif
│ │ │ ├── set2.gif
│ │ │ ├── set.gif
│ │ │ ├── sitebackup.gif
│ │ │ ├── skin.css
│ │ │ ├── smallbg.jpg
│ │ │ ├── st.gif
│ │ │ ├── stop.gif
│ │ │ ├── st.png
│ │ │ ├── str.gif
│ │ │ ├── Submit_bg.gif
│ │ │ ├── t2bg1.gif
│ │ │ ├── t2bg2.gif
│ │ │ ├── t2bg4.gif
│ │ │ ├── t2bg5.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── title.gif
│ │ │ ├── tj.jpg
│ │ │ ├── to.gif
│ │ │ ├── tool-down-pic.gif
│ │ │ ├── top_bt.jpg
│ │ │ ├── top-right.gif
│ │ │ ├── ts.gif
│ │ │ ├── usercontrol.gif
│ │ │ ├── user-info.gif
│ │ │ ├── vie.gif
│ │ │ ├── X.gif
│ │ │ ├── yc.gif
│ │ │ └── yx.gif
│ │ └── left_css.css
│ ├── default.jsp
│ ├── header.jsp
│ ├── images
│ │ ├── bg.gif
│ │ ├── dl.gif
│ │ ├── left.gif
│ │ ├── login_03.gif
│ │ ├── login_03.jpg
│ │ ├── login_05.gif
│ │ ├── login_06.gif
│ │ ├── login_07.gif
│ │ ├── login_08.gif
│ │ ├── logo.gif
│ │ ├── logo.jpg
│ │ ├── main_03.gif
│ │ ├── main_04.gif
│ │ ├── main_05.gif
│ │ ├── main_07.gif
│ │ ├── main_09.gif
│ │ ├── main_11.gif
│ │ ├── main_12.gif
│ │ ├── main_14.gif
│ │ ├── main_16.gif
│ │ ├── main_18.gif
│ │ ├── main_20.gif
│ │ ├── main_21.gif
│ │ ├── main_22.gif
│ │ ├── main_29.gif
│ │ ├── main_30.gif
│ │ ├── main_31.gif
│ │ ├── main_32.gif
│ │ ├── main_34.gif
│ │ ├── main_36.gif
│ │ ├── main_37.gif
│ │ ├── main_39.gif
│ │ ├── main_40.gif
│ │ ├── main_41.gif
│ │ ├── main_45.gif
│ │ ├── main_47.gif
│ │ ├── main_48.gif
│ │ ├── main_51.gif
│ │ ├── main_52.gif
│ │ ├── main_55_1.gif
│ │ ├── main_55.gif
│ │ ├── main_58.gif
│ │ ├── main_59.gif
│ │ ├── main_61.gif
│ │ ├── main_62.gif
│ │ └── out.gif
│ ├── images_wel
│ │ ├── dingdantongji.png
│ │ ├── huiyuanzhongxin.png
│ │ ├── lingshiyinliao.png
│ │ ├── liuyanhuifu.png
│ │ ├── miaoshazhuangkuang.png
│ │ ├── peisongzhongxin.png
│ │ ├── pinpaiguanli.png
│ │ ├── rihuabaihuo.png
│ │ ├── tushuzazhi.png
│ │ ├── wentiyule.png
│ │ ├── xinwenguanli.png
│ │ └── zhaopinguanli.png
│ ├── index.jsp
│ ├── js
│ │ ├── moo.fx.js
│ │ ├── moo.fx.pack.js
│ │ └── prototype.lite.js
│ ├── left.jsp
│ ├── login1.jsp
│ ├── login.jsp
│ ├── queryUserByName.jsp
│ ├── updateAdmin.jsp
│ ├── validate.jsp
│ └── welcome.jsp
├── adminJoin
│ ├── addJobMessage.jsp
│ ├── addNew.jsp
│ ├── allJobMessage.jsp
│ └── allNew.jsp
├── adminorder
│ ├── allorder.jsp
│ ├── failorders.jsp
│ ├── miaoshaorderchoosetime.jsp
│ ├── miaoshashowchoosed.jsp
│ ├── orderchoosetime.jsp
│ ├── secorders.jsp
│ ├── showchoosed.jsp
│ ├── singlefailorder.jsp
│ ├── singleorder.jsp
│ └── singlesecorder.jsp
├── adminreply
│ ├── adminreply.jsp
│ ├── allreplys.jsp
│ ├── noreply.jsp
│ ├── replys.jsp
│ └── show.jsp
├── brand
│ ├── addBrand.jsp
│ ├── adminShow.jsp
│ ├── images
│ │ ├── shanchu.jpg
│ │ ├── shanchu.png
│ │ ├── shangyiye.png
│ │ ├── shouye.png
│ │ ├── shuaxin.bmp
│ │ ├── weiye.png
│ │ ├── xiangshang.png
│ │ ├── xiangxia.png
│ │ ├── xiayiye.png
│ │ ├── zhiding.png
│ │ └── zhidi.png
│ ├── page.jsp
│ ├── test.jsp
│ └── updateBrand.jsp
├── cal
│ ├── calendar.css
│ ├── calendar.js
│ ├── calendar-setup.js
│ └── calendar-zh.js
├── changePsd.jsp
├── css
│ ├── admin
│ │ ├── houtaiheader.png
│ │ └── index_layout.css
│ ├── jquery-webox.css
│ ├── order
│ │ ├── shorder_style.css
│ │ └── validationEngine.jquery.css
│ ├── shuser_style.css
│ ├── style.css
│ ├── template.css
│ └── validationEngine.jquery.css
├── default.jsp
├── firstBrandProduct.jsp
├── footer.jsp
├── gouwuliucheng.jsp
├── head.jsp
├── images
│ ├── 0743.gif
│ ├── banner.png
│ ├── brand
│ │ ├── aoliao.jpg
│ │ ├── baishi.gif
│ │ ├── chaowei.gif
│ │ ├── chengguang.jpg
│ │ ├── chunsi.jpg
│ │ ├── daliyuan.jpg
│ │ ├── defu.gif
│ │ ├── diaopai.jpg
│ │ ├── haifeisi.jpg
│ │ ├── haochidian.jpg
│ │ ├── kangshifu.jpg
│ │ ├── koushuiwa.jpg
│ │ ├── lishi.jpg
│ │ ├── mengniu.jpg
│ │ ├── nanfu.gif
│ │ ├── qiaobusi.jpg
│ │ ├── qiaqiq.jpg
│ │ ├── qingfeng.gif
│ │ ├── qingfeng.jpg
│ │ ├── runtian.jpg
│ │ ├── sanxiao.jpg
│ │ ├── shuanghui.gif
│ │ ├── shufujia.gif
│ │ ├── tiantangsan.jpg
│ │ ├── tongyi.jpg
│ │ ├── wahaha.gif
│ │ ├── xiangyin.gif
│ │ ├── xiangyin.jpg
│ │ ├── xufuji.jpg
│ │ └── yili.gif
│ ├── cals
│ │ ├── close.gif
│ │ ├── mnext.gif
│ │ ├── mprev.gif
│ │ ├── Thumbs.db
│ │ ├── ynext.gif
│ │ └── yprev.gif
│ ├── guanli.jpg
│ ├── huiyuan.jpg
│ ├── icon.gif
│ ├── list.png
│ ├── liuchengyi.jpg
│ ├── miaoshashenma.jpg
│ ├── order
│ │ ├── bullet_add.png
│ │ ├── bullet_delete.png
│ │ ├── cart_delete.png
│ │ └── shopcart.jpg
│ ├── product
│ │ ├── ashamunaicha.jpg
│ │ ├── baishikele.jpg
│ │ ├── chaoweiwenxiang1.jpg
│ │ ├── chengguangzhuangdingji.jpg
│ │ ├── chenguangbixin.jpg
│ │ ├── chenguanggutijiao.jpg
│ │ ├── chunsimiantiao.jpg
│ │ ├── diaopaifeizao.jpg
│ │ ├── diaopaixiyifen.jpg
│ │ ├── gaifeisi1.jpg
│ │ ├── haochidianxinrenbing.jpg
│ │ ├── heqizheng.jpg
│ │ ├── kangshifuganbanmian.jpg
│ │ ├── kangshifuhongshaoniurou.jpg
│ │ ├── kangshifulvcha.jpg
│ │ ├── kangshifusuancainiurou.jpg
│ │ ├── koushuiwa1.bmp
│ │ ├── koushuiwa5.jpg
│ │ ├── laotansuancainiuroumian.jpg
│ │ ├── mengniu1.jpg
│ │ ├── mengniu7.jpg
│ │ ├── pukepai.jpg
│ │ ├── qiaobusizhuan.jpg
│ │ ├── qingfeng1.gif
│ │ ├── qingfeng6.jpg
│ │ ├── qingfeng.jpg
│ │ ├── quanguotongshi.jpg
│ │ ├── runtian.jpg
│ │ ├── sanguosha.jpg
│ │ ├── sanxiao1.jpg
│ │ ├── shizixiu1.png
│ │ ├── shufujia1.jpg
│ │ └── tiantangsan1.jpg
│ ├── shuser
│ │ ├── banner.png
│ │ ├── close.fw.png
│ │ ├── icon.gif
│ │ ├── list.png
│ │ ├── login_bg.gif
│ │ ├── login.gif
│ │ ├── logintitle.gif
│ │ ├── register.gif
│ │ ├── registernow.gif
│ │ ├── reset.gif
│ │ ├── submit.gif
│ │ ├── templatemo_body_bottom.png
│ │ ├── templatemo_body_top.jpg
│ │ ├── templatemo_content_bottom1.png
│ │ ├── templatemo_content_bottom.png
│ │ ├── templatemo_content_middle1.png
│ │ ├── templatemo_content_middle.png
│ │ ├── templatemo_content_top1.png
│ │ ├── templatemo_content_top.png
│ │ ├── templatemo_footer.png
│ │ ├── templatemo_image_01.jpg
│ │ ├── templatemo_image_02.jpg
│ │ ├── templatemo_image_03.jpg
│ │ ├── templatemo_image_04.jpg
│ │ ├── templatemo_image_05.jpg
│ │ ├── templatemo_logo.png
│ │ ├── templatemo_menubar.png
│ │ ├── templatemo_shopping_cart.png
│ │ ├── templatemo_sidebar_bottom.png
│ │ ├── templatemo_sidebar_box_top.png
│ │ ├── templatemo_sidebar_h1.png
│ │ ├── templatemo_sidebar_middle.png
│ │ ├── templatemo_sidebar_top.png
│ │ ├── templatemo_wrapper_top.jpg
│ │ └── th.png
│ ├── templatemo_body_bottom.png
│ ├── templatemo_body_top.jpg
│ ├── templatemo_content_bottom1.png
│ ├── templatemo_content_bottom.png
│ ├── templatemo_content_middle1.png
│ ├── templatemo_content_middle.png
│ ├── templatemo_content_top1.png
│ ├── templatemo_content_top.png
│ ├── templatemo_footer.png
│ ├── templatemo_image_01.jpg
│ ├── templatemo_image_02.jpg
│ ├── templatemo_image_03.jpg
│ ├── templatemo_image_04.jpg
│ ├── templatemo_image_05.jpg
│ ├── templatemo_logo.png
│ ├── templatemo_menubar.png
│ ├── templatemo_shopping_cart.png
│ ├── templatemo_sidebar_bottom.png
│ ├── templatemo_sidebar_box_top.png
│ ├── templatemo_sidebar_h1.png
│ ├── templatemo_sidebar_middle.png
│ ├── templatemo_sidebar_top.png
│ └── templatemo_wrapper_top.jpg
├── index.jsp
├── join
│ ├── addJobMessage.jsp
│ ├── addNew.jsp
│ ├── allJobDetail.jsp
│ ├── allJobMessage.jsp
│ ├── allNewDetail.jsp
│ ├── allNew.jsp
│ ├── joinDetail.jsp
│ ├── joinme.jsp
│ ├── newDetail.jsp
│ ├── news.jsp
│ ├── updateJob.jsp
│ └── updateNew.jsp
├── joinDetail.jsp
├── joinme.jsp
├── js
│ ├── jquery-1.6.min.js
│ ├── jquery-1.7.2.js
│ ├── jquery-1.7.2.min.js
│ ├── jquery.js
│ ├── jquery.validationEngine.js
│ ├── jquery.validationEngine.min.js
│ ├── jquery-webox.js
│ ├── order
│ │ ├── jquery-1.6.min.js
│ │ ├── jquery.validationEngine.js
│ │ └── jquery.validationEngine.min.js
│ └── sss
│ ├── images
│ │ ├── collapsed.gif
│ │ ├── expanded.gif
│ │ ├── menu.css
│ │ └── title.png
│ └── menu.js
├── kindeditor
│ ├── attached
│ ├── jsp
│ │ ├── demo.jsp
│ │ ├── file_manager_json.jsp
│ │ ├── lib
│ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ ├── commons-io-1.4.jar
│ │ │ └── json_simple-1.1.jar
│ │ └── upload_json.jsp
│ ├── kindeditor.js
│ ├── kindeditor-min.js
│ ├── lang
│ │ ├── ar.js
│ │ ├── en.js
│ │ ├── zh_CN.js
│ │ └── zh_TW.js
│ ├── plugins
│ │ ├── anchor
│ │ │ └── anchor.js
│ │ ├── baidumap
│ │ │ ├── baidumap.js
│ │ │ └── map.html
│ │ ├── clearhtml
│ │ │ └── clearhtml.js
│ │ ├── code
│ │ │ ├── code.js
│ │ │ ├── prettify.css
│ │ │ └── prettify.js
│ │ ├── emoticons
│ │ │ ├── emoticons.js
│ │ │ └── images
│ │ │ ├── 0.gif
│ │ │ ├── 100.gif
│ │ │ ├── 101.gif
│ │ │ ├── 102.gif
│ │ │ ├── 103.gif
│ │ │ ├── 104.gif
│ │ │ ├── 105.gif
│ │ │ ├── 106.gif
│ │ │ ├── 107.gif
│ │ │ ├── 108.gif
│ │ │ ├── 109.gif
│ │ │ ├── 10.gif
│ │ │ ├── 110.gif
│ │ │ ├── 111.gif
│ │ │ ├── 112.gif
│ │ │ ├── 113.gif
│ │ │ ├── 114.gif
│ │ │ ├── 115.gif
│ │ │ ├── 116.gif
│ │ │ ├── 117.gif
│ │ │ ├── 118.gif
│ │ │ ├── 119.gif
│ │ │ ├── 11.gif
│ │ │ ├── 120.gif
│ │ │ ├── 121.gif
│ │ │ ├── 122.gif
│ │ │ ├── 123.gif
│ │ │ ├── 124.gif
│ │ │ ├── 125.gif
│ │ │ ├── 126.gif
│ │ │ ├── 127.gif
│ │ │ ├── 128.gif
│ │ │ ├── 129.gif
│ │ │ ├── 12.gif
│ │ │ ├── 130.gif
│ │ │ ├── 131.gif
│ │ │ ├── 132.gif
│ │ │ ├── 133.gif
│ │ │ ├── 134.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 2.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 3.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 4.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 5.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 6.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 72.gif
│ │ │ ├── 73.gif
│ │ │ ├── 74.gif
│ │ │ ├── 75.gif
│ │ │ ├── 76.gif
│ │ │ ├── 77.gif
│ │ │ ├── 78.gif
│ │ │ ├── 79.gif
│ │ │ ├── 7.gif
│ │ │ ├── 80.gif
│ │ │ ├── 81.gif
│ │ │ ├── 82.gif
│ │ │ ├── 83.gif
│ │ │ ├── 84.gif
│ │ │ ├── 85.gif
│ │ │ ├── 86.gif
│ │ │ ├── 87.gif
│ │ │ ├── 88.gif
│ │ │ ├── 89.gif
│ │ │ ├── 8.gif
│ │ │ ├── 90.gif
│ │ │ ├── 91.gif
│ │ │ ├── 92.gif
│ │ │ ├── 93.gif
│ │ │ ├── 94.gif
│ │ │ ├── 95.gif
│ │ │ ├── 96.gif
│ │ │ ├── 97.gif
│ │ │ ├── 98.gif
│ │ │ ├── 99.gif
│ │ │ ├── 9.gif
│ │ │ └── static.gif
│ │ ├── filemanager
│ │ │ ├── filemanager.js
│ │ │ └── images
│ │ │ ├── file-16.gif
│ │ │ ├── file-64.gif
│ │ │ ├── folder-16.gif
│ │ │ ├── folder-64.gif
│ │ │ └── go-up.gif
│ │ ├── flash
│ │ │ └── flash.js
│ │ ├── image
│ │ │ ├── image.js
│ │ │ └── images
│ │ │ ├── align_left.gif
│ │ │ ├── align_right.gif
│ │ │ ├── align_top.gif
│ │ │ └── refresh.png
│ │ ├── insertfile
│ │ │ └── insertfile.js
│ │ ├── lineheight
│ │ │ └── lineheight.js
│ │ ├── link
│ │ │ └── link.js
│ │ ├── map
│ │ │ ├── map.html
│ │ │ └── map.js
│ │ ├── media
│ │ │ └── media.js
│ │ ├── multiimage
│ │ │ ├── images
│ │ │ │ ├── image.png
│ │ │ │ ├── select-files-en.png
│ │ │ │ ├── select-files-zh_CN.png
│ │ │ │ └── swfupload.swf
│ │ │ └── multiimage.js
│ │ ├── pagebreak
│ │ │ └── pagebreak.js
│ │ ├── plainpaste
│ │ │ └── plainpaste.js
│ │ ├── preview
│ │ │ └── preview.js
│ │ ├── quickformat
│ │ │ └── quickformat.js
│ │ ├── table
│ │ │ └── table.js
│ │ ├── template
│ │ │ ├── html
│ │ │ │ ├── 1.html
│ │ │ │ ├── 2.html
│ │ │ │ └── 3.html
│ │ │ └── template.js
│ │ └── wordpaste
│ │ └── wordpaste.js
│ └── themes
│ ├── common
│ │ ├── anchor.gif
│ │ ├── blank.gif
│ │ ├── flash.gif
│ │ ├── loading.gif
│ │ ├── media.gif
│ │ └── rm.gif
│ ├── default
│ │ ├── background.png
│ │ ├── default.css
│ │ └── default.png
│ │ ├── editor.gif
│ │ └── qq.css
│ └── simple
│ └── simple.css
├── left.jsp
├── loginShUser.jsp
├── losePsd.jsp
├── maincontent.jsp
├── message
│ ├── message.jsp
│ ├── mymessage.jsp
│ └── mymess.jsp
├── META-INF
│ └── MANIFEST.MF
├── miaosha
│ ├── add.jsp
│ ├── index.jsp
│ ├── order.jsp
│ ├── query.jsp
│ ├── result.jsp
│ ├── success.jsp
│ └── update.jsp
├── miaoshaOld
│ ├── old.jsp
│ ├── querybyid1.jsp
│ ├── querybyid.jsp
│ ├── querybytime1.jsp
│ └── querybytime.jsp
├── news.jsp
├── odcs
│ ├── add.jsp
│ ├── show.jsp
│ └── update.jsp
├── ordercon
│ ├── lastNoShenHe.jsp
│ ├── lastRightOrder.jsp
│ ├── lastShowOrder.jsp
│ ├── lastShowRightOrder.jsp
│ ├── noShenHe.jsp
│ ├── rightOrder.jsp
│ ├── showOrder.jsp
│ └── showRightOrder.jsp
├── orderjsp
│ ├── orderInf.jsp
│ ├── orderSuccess.jsp
│ ├── shoppingCart.jsp
│ ├── showCart.jsp
│ ├── successInf.jsp
│ └── writeInf.jsp
├── product
│ ├── addProduct.jsp
│ ├── changeProduct.jsp
│ ├── insertProduct.jsp
│ ├── productfoodbrand.jsp
│ ├── productfoodByName.jsp
│ ├── productfood.jsp
│ ├── productleft.jsp
│ ├── queryProduct.jsp
│ └── updateProduct.jsp
├── registerShUser.jsp
├── right.jsp
├── seclevel
│ ├── addSeclevel.jsp
│ ├── querySeclevel.jsp
│ └── updateSeclevel.jsp
├── shuser.jsp
├── templatemo1_style.css
├── templatemo2_style.css
├── templatemo_style.css
├── userdetail.jsp
├── userleft.jsp
├── userorder.jsp
├── userupdate.jsp
├── validate.jsp
└── WEB-INF
├── classes
│ ├── applicationContext.xml
│ ├── com
│ │ ├── config
│ │ │ └── SessionConfig.class
│ │ ├── sharings
│ │ │ ├── action
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminAction.class
│ │ │ │ │ └── AdminReplyAction.class
│ │ │ │ ├── brand
│ │ │ │ │ └── BrandAction.class
│ │ │ │ ├── conorder
│ │ │ │ │ ├── ConOrderAction.class
│ │ │ │ │ └── OrdersAction.class
│ │ │ │ ├── hs
│ │ │ │ │ └── hsAction.class
│ │ │ │ ├── message
│ │ │ │ │ └── MessageAction.class
│ │ │ │ ├── OdcsAction.class
│ │ │ │ ├── order
│ │ │ │ │ ├── OrderAction.class
│ │ │ │ │ └── test.class
│ │ │ │ ├── ShMiaoshaAction.class
│ │ │ │ ├── ShMiaoshaOldAction.class
│ │ │ │ ├── ShProductAction.class
│ │ │ │ ├── ShSecLevelAction.class
│ │ │ │ └── ShUserAction.class
│ │ │ ├── dao
│ │ │ │ ├── ShAdminDAO.class
│ │ │ │ ├── ShBrandDAO$10.class
│ │ │ │ ├── ShBrandDAO$11.class
│ │ │ │ ├── ShBrandDAO$12.class
│ │ │ │ ├── ShBrandDAO$13.class
│ │ │ │ ├── ShBrandDAO$14.class
│ │ │ │ ├── ShBrandDAO$15.class
│ │ │ │ ├── ShBrandDAO$16.class
│ │ │ │ ├── ShBrandDAO$1.class
│ │ │ │ ├── ShBrandDAO$2.class
│ │ │ │ ├── ShBrandDAO$3.class
│ │ │ │ ├── ShBrandDAO$4.class
│ │ │ │ ├── ShBrandDAO$5.class
│ │ │ │ ├── ShBrandDAO$6.class
│ │ │ │ ├── ShBrandDAO$7.class
│ │ │ │ ├── ShBrandDAO$8.class
│ │ │ │ ├── ShBrandDAO$9.class
│ │ │ │ ├── ShBrandDAO.class
│ │ │ │ ├── ShJobMessageDAO.class
│ │ │ │ ├── ShMessageDAO.class
│ │ │ │ ├── ShMiaoshaDAO.class
│ │ │ │ ├── ShMiaoshaOldDAO.class
│ │ │ │ ├── ShNewsDAO.class
│ │ │ │ ├── ShOdcsDAO.class
│ │ │ │ ├── ShOrderDAO.class
│ │ │ │ ├── ShOrderDetailDAO.class
│ │ │ │ ├── ShProductDAO.class
│ │ │ │ ├── ShReplyDAO.class
│ │ │ │ ├── ShSecondLevelDAO.class
│ │ │ │ ├── ShUserDAO.class
│ │ │ │ └── ShUserMiaoshaDAO.class
│ │ │ ├── service
│ │ │ │ ├── admin
│ │ │ │ │ ├── AdminReplyService.class
│ │ │ │ │ └── AdminService.class
│ │ │ │ ├── brand
│ │ │ │ │ ├── BrandService.class
│ │ │ │ │ └── test.class
│ │ │ │ ├── conorder
│ │ │ │ │ ├── ConOrderService.class
│ │ │ │ │ └── OrdersService.class
│ │ │ │ ├── hs
│ │ │ │ │ ├── jobService.class
│ │ │ │ │ └── newService.class
│ │ │ │ ├── message
│ │ │ │ │ └── MessageService.class
│ │ │ │ ├── OdcsService.class
│ │ │ │ ├── order
│ │ │ │ │ └── OrderService.class
│ │ │ │ ├── ShMiaoshaOldService.class
│ │ │ │ ├── ShMiaoshaService.class
│ │ │ │ ├── ShProductService.class
│ │ │ │ ├── ShSecLevelService.class
│ │ │ │ └── ShUserService.class
│ │ │ └── vo
│ │ │ ├── ShAdmin.class
│ │ │ ├── ShAdmin.hbm.xml
│ │ │ ├── ShBrand.class
│ │ │ ├── ShBrand.hbm.xml
│ │ │ ├── ShJobMessage.class
│ │ │ ├── ShJobMessage.hbm.xml
│ │ │ ├── ShMessage.class
│ │ │ ├── ShMessage.hbm.xml
│ │ │ ├── ShMiaosha.class
│ │ │ ├── ShMiaosha.hbm.xml
│ │ │ ├── ShMiaoshaOld.class
│ │ │ ├── ShMiaoshaOld.hbm.xml
│ │ │ ├── ShNews.class
│ │ │ ├── ShNews.hbm.xml
│ │ │ ├── ShOdcs.class
│ │ │ ├── ShOdcs.hbm.xml
│ │ │ ├── ShOrder.class
│ │ │ ├── ShOrderDetail.class
│ │ │ ├── ShOrderDetail.hbm.xml
│ │ │ ├── ShOrder.hbm.xml
│ │ │ ├── ShProduct.class
│ │ │ ├── ShProduct.hbm.xml
│ │ │ ├── ShReply.class
│ │ │ ├── ShReply.hbm.xml
│ │ │ ├── ShSecondLevel.class
│ │ │ ├── ShSecondLevel.hbm.xml
│ │ │ ├── ShShopCart.class
│ │ │ ├── ShUser.class
│ │ │ ├── ShUser.hbm.xml
│ │ │ ├── ShUserMiaosha.class
│ │ │ └── ShUserMiaosha.hbm.xml
│ │ └── util
│ │ ├── Page.class
│ │ ├── PageTools.class
│ │ ├── PageUtil.class
│ │ ├── Result.class
│ │ └── SortPrior.class
│ ├── struts.xml
│ └── xmls
│ ├── adminorder_xml
│ │ ├── applicationContext-orders.xml
│ │ └── struts-orders.xml
│ ├── admin_xml
│ │ ├── applicationContext-admin.xml
│ │ ├── struts-adminreply.xml
│ │ └── struts-admin.xml
│ ├── conorder_xml
│ │ ├── applicationContext-conorder.xml
│ │ └── struts-conorder.xml
│ ├── join_xml
│ │ ├── applicationContext-hs.xml
│ │ └── struts-hs.xml
│ ├── message_xml
│ │ ├── applicationContext-message.xml
│ │ └── struts-message.xml
│ ├── order_xml
│ │ ├── applicationContext-order.xml
│ │ └── struts-order.xml
│ ├── product_xml
│ │ ├── applicationContext-product.xml
│ │ └── struts-product.xml
│ ├── seclevel_xml
│ │ ├── applicationContext-seclevel.xml
│ │ └── struts-seclevel.xml
│ ├── shmiaoshaold_xml
│ │ ├── applicationContext-miaoshaold.xml
│ │ └── struts-miaoshaold.xml
│ ├── shmiaosha_xml
│ │ ├── applicationContext-miaosha.xml
│ │ └── struts-miaosha.xml
│ ├── slevp_xml
│ │ ├── applicationContext-slevp.xml
│ │ ├── struts-brand.xml
│ │ └── struts-odcs.xml
│ └── user_xml
│ ├── applicationContext-user.xml
│ └── struts-ShUser.xml
├── lib
│ ├── aspectjrt.jar
│ ├── aspectjweaver.jar
│ ├── commons-fileupload-1.2.1.jar
│ ├── commons-io-1.4.jar
│ ├── json_simple-1.1.jar
│ └── mysql java驱动程序.jar
├── spring-form.tld
├── spring.tld
└── web.xml
144 directories, 950 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论