在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 2015新项目Ebuy网上商城:SSH/bootstrap/ueditor/mysql/annotation.zip

2015新项目Ebuy网上商城:SSH/bootstrap/ueditor/mysql/annotation.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:21.86M
  • 下载次数:1
  • 浏览次数:37
  • 发布时间:2021-12-09
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
2015年6月份完成新项目,适合毕设、大型试验等应用,采用了bootstrap,界面非常美观,绝对不是老项目可以比的。本系统主要采用java语言编写,使用了Struts2-2.3.7、Spring3.2.0、Hibernate3为主体的SSH框架。前台除了Ajax、JS外还用了Ueditor、bootstrap2等一些开源技术。数据库采用了Mysql数据库.文件包含sql文件。
【实例截图】
【核心代码】
4744302543323626420.zip
└── E-buy源码
├── 数据库
│   └── sshe.sql
└── 项目源码
└── ebuy
├── src
│   ├── main
│   │   ├── java
│   │   │   └── jxd
│   │   │   ├── action
│   │   │   │   ├── CartAction.java
│   │   │   │   ├── LoginAction.java
│   │   │   │   ├── OrderAction.java
│   │   │   │   ├── ProductAction.java
│   │   │   │   ├── RegistAction.java
│   │   │   │   └── UserAction.java
│   │   │   ├── dao
│   │   │   │   ├── CartDaoI.java
│   │   │   │   ├── CommentDaoI.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── CartDaoImpl.java
│   │   │   │   │   ├── CommentDaoImpl.java
│   │   │   │   │   ├── OederDaoImpl.java
│   │   │   │   │   ├── ProductDaoImpl.java
│   │   │   │   │   ├── RegistDaoImpl.java
│   │   │   │   │   ├── SellRankingDaoImpl.java
│   │   │   │   │   └── UserDaoImpl.java
│   │   │   │   ├── OrderDaoI.java
│   │   │   │   ├── ProductDaoI.java
│   │   │   │   ├── RegistDaoI.java
│   │   │   │   ├── SellRankingDaoI.java
│   │   │   │   └── UserDaoI.java
│   │   │   ├── filter
│   │   │   │   └── ueditorFilter.java
│   │   │   ├── model
│   │   │   │   ├── Cart.hbm.xml
│   │   │   │   ├── Cart.java
│   │   │   │   ├── CartToJsp.java
│   │   │   │   ├── Chathistory.hbm.xml
│   │   │   │   ├── Chathistory.java
│   │   │   │   ├── Detailcart.hbm.xml
│   │   │   │   ├── Detailcart.java
│   │   │   │   ├── Detailcomment.hbm.xml
│   │   │   │   ├── Detailcomment.java
│   │   │   │   ├── Detailorder.hbm.xml
│   │   │   │   ├── Detailorder.java
│   │   │   │   ├── Maincomment.hbm.xml
│   │   │   │   ├── Maincomment.java
│   │   │   │   ├── Mainorder.hbm.xml
│   │   │   │   ├── Mainorder.java
│   │   │   │   ├── OrderToShow.java
│   │   │   │   ├── Product.hbm.xml
│   │   │   │   ├── Product.java
│   │   │   │   ├── Scanhistory.hbm.xml
│   │   │   │   ├── Scanhistory.java
│   │   │   │   ├── Sellranking.hbm.xml
│   │   │   │   ├── Sellranking.java
│   │   │   │   ├── Sellrank.java
│   │   │   │   ├── User.hbm.xml
│   │   │   │   └── User.java
│   │   │   ├── service
│   │   │   │   ├── CartServiceI.java
│   │   │   │   ├── CommentServiceI.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── CartServiceImpl.java
│   │   │   │   │   ├── CommentServiceImpl.java
│   │   │   │   │   ├── OrderServiceImpl.java
│   │   │   │   │   ├── ProductServiceImpl.java
│   │   │   │   │   ├── RegistServiceImpl.java
│   │   │   │   │   ├── SellRankingServiceImpl.java
│   │   │   │   │   └── UserServiceImpl.java
│   │   │   │   ├── OrderServiceI.java
│   │   │   │   ├── ProductServiceI.java
│   │   │   │   ├── RegistServiceI.java
│   │   │   │   ├── SellRankingServiceI.java
│   │   │   │   └── UserServiceI.java
│   │   │   └── util
│   │   │   ├── GetTime.java
│   │   │   └── QuickSort.java
│   │   └── resources
│   │   ├── applicationContext.xml
│   │   ├── jdbc.properties
│   │   ├── log4j.properties
│   │   └── struts.xml
│   └── test
│   ├── java
│   │   └── jxd
│   │   └── test
│   │   └── GetIP.java
│   └── resources
└── WebRoot
├── b3
│   ├── css
│   │   ├── bootstrap.css
│   │   ├── bootstrap.css.map
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap-theme.css
│   │   ├── bootstrap-theme.css.map
│   │   └── bootstrap-theme.min.css
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   ├── glyphicons-halflings-regular.woff
│   │   └── glyphicons-halflings-regular.woff2
│   └── js
│   ├── bootstrap.js
│   ├── bootstrap.min.js
│   └── npm.js
├── bootstrap
│   ├── css
│   │   ├── bootstrap.css
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap-responsive.css
│   │   └── bootstrap-responsive.min.css
│   ├── img
│   │   ├── glyphicons-halflings.png
│   │   └── glyphicons-halflings-white.png
│   └── js
│   ├── bootstrap.js
│   ├── bootstrap.min.js
│   └── jquery.min.js
├── img
│   ├── a.png
│   ├── b.png
│   ├── c.png
│   ├── gradient.png
│   ├── icon-search.png
│   ├── mainI.jpg
│   ├── main.png
│   ├── top1.png
│   └── top2.png
├── index.jsp
├── jsps
│   ├── buysuccess.jsp
│   ├── cartshow.jsp
│   ├── chat.jsp
│   ├── Login.jsp
│   ├── mainII.jsp
│   ├── mainI.jsp
│   ├── ordershow.jsp
│   ├── productShow.jsp
│   ├── system
│   │   ├── chat.jsp
│   │   ├── chatshow.jsp
│   │   ├── commentshow.jsp
│   │   ├── editerror.jsp
│   │   ├── paihang.jsp
│   │   ├── product_add.jsp
│   │   ├── productedit.jsp
│   │   ├── productshow.jsp
│   │   ├── shouadmin.jsp
│   │   ├── showorder.jsp
│   │   ├── showuser.jsp
│   │   ├── systemMain.jsp
│   │   └── upload.jsp
│   └── yinyee.jsp
├── META-INF
│   └── MANIFEST.MF
├── ueditor
│   ├── dialogs
│   │   ├── anchor
│   │   │   └── anchor.html
│   │   ├── attachment
│   │   │   ├── attachment.css
│   │   │   ├── attachment.html
│   │   │   ├── attachment.js
│   │   │   ├── fileTypeImages
│   │   │   │   ├── icon_chm.gif
│   │   │   │   ├── icon_default.png
│   │   │   │   ├── icon_doc.gif
│   │   │   │   ├── icon_exe.gif
│   │   │   │   ├── icon_jpg.gif
│   │   │   │   ├── icon_mp3.gif
│   │   │   │   ├── icon_mv.gif
│   │   │   │   ├── icon_pdf.gif
│   │   │   │   ├── icon_ppt.gif
│   │   │   │   ├── icon_psd.gif
│   │   │   │   ├── icon_rar.gif
│   │   │   │   ├── icon_txt.gif
│   │   │   │   └── icon_xls.gif
│   │   │   └── images
│   │   │   ├── alignicon.gif
│   │   │   ├── alignicon.png
│   │   │   ├── bg.png
│   │   │   ├── file-icons.gif
│   │   │   ├── file-icons.png
│   │   │   ├── icons.gif
│   │   │   ├── icons.png
│   │   │   ├── image.png
│   │   │   ├── progress.png
│   │   │   ├── success.gif
│   │   │   └── success.png
│   │   ├── background
│   │   │   ├── background.css
│   │   │   ├── background.html
│   │   │   ├── background.js
│   │   │   └── images
│   │   │   ├── bg.png
│   │   │   └── success.png
│   │   ├── charts
│   │   │   ├── chart.config.js
│   │   │   ├── charts.css
│   │   │   ├── charts.html
│   │   │   ├── charts.js
│   │   │   └── images
│   │   │   ├── charts0.png
│   │   │   ├── charts1.png
│   │   │   ├── charts2.png
│   │   │   ├── charts3.png
│   │   │   ├── charts4.png
│   │   │   └── charts5.png
│   │   ├── emotion
│   │   │   ├── emotion.css
│   │   │   ├── emotion.html
│   │   │   ├── emotion.js
│   │   │   └── images
│   │   │   ├── 0.gif
│   │   │   ├── bface.gif
│   │   │   ├── cface.gif
│   │   │   ├── fface.gif
│   │   │   ├── jxface2.gif
│   │   │   ├── neweditor-tab-bg.png
│   │   │   ├── tface.gif
│   │   │   ├── wface.gif
│   │   │   └── yface.gif
│   │   ├── gmap
│   │   │   └── gmap.html
│   │   ├── help
│   │   │   ├── help.css
│   │   │   ├── help.html
│   │   │   └── help.js
│   │   ├── image
│   │   │   ├── image.css
│   │   │   ├── image.html
│   │   │   ├── image.js
│   │   │   └── images
│   │   │   ├── alignicon.jpg
│   │   │   ├── bg.png
│   │   │   ├── icons.gif
│   │   │   ├── icons.png
│   │   │   ├── image.png
│   │   │   ├── progress.png
│   │   │   ├── success.gif
│   │   │   └── success.png
│   │   ├── insertframe
│   │   │   └── insertframe.html
│   │   ├── internal.js
│   │   ├── link
│   │   │   └── link.html
│   │   ├── map
│   │   │   ├── map.html
│   │   │   └── show.html
│   │   ├── music
│   │   │   ├── music.css
│   │   │   ├── music.html
│   │   │   └── music.js
│   │   ├── preview
│   │   │   └── preview.html
│   │   ├── scrawl
│   │   │   ├── images
│   │   │   │   ├── addimg.png
│   │   │   │   ├── brush.png
│   │   │   │   ├── delimgH.png
│   │   │   │   ├── delimg.png
│   │   │   │   ├── emptyH.png
│   │   │   │   ├── empty.png
│   │   │   │   ├── eraser.png
│   │   │   │   ├── redoH.png
│   │   │   │   ├── redo.png
│   │   │   │   ├── scaleH.png
│   │   │   │   ├── scale.png
│   │   │   │   ├── size.png
│   │   │   │   ├── undoH.png
│   │   │   │   └── undo.png
│   │   │   ├── scrawl.css
│   │   │   ├── scrawl.html
│   │   │   └── scrawl.js
│   │   ├── searchreplace
│   │   │   ├── searchreplace.html
│   │   │   └── searchreplace.js
│   │   ├── snapscreen
│   │   │   └── snapscreen.html
│   │   ├── spechars
│   │   │   ├── spechars.html
│   │   │   └── spechars.js
│   │   ├── table
│   │   │   ├── dragicon.png
│   │   │   ├── edittable.css
│   │   │   ├── edittable.html
│   │   │   ├── edittable.js
│   │   │   ├── edittd.html
│   │   │   └── edittip.html
│   │   ├── template
│   │   │   ├── config.js
│   │   │   ├── images
│   │   │   │   ├── bg.gif
│   │   │   │   ├── pre0.png
│   │   │   │   ├── pre1.png
│   │   │   │   ├── pre2.png
│   │   │   │   ├── pre3.png
│   │   │   │   └── pre4.png
│   │   │   ├── template.css
│   │   │   ├── template.html
│   │   │   └── template.js
│   │   ├── video
│   │   │   ├── images
│   │   │   │   ├── bg.png
│   │   │   │   ├── center_focus.jpg
│   │   │   │   ├── file-icons.gif
│   │   │   │   ├── file-icons.png
│   │   │   │   ├── icons.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── image.png
│   │   │   │   ├── left_focus.jpg
│   │   │   │   ├── none_focus.jpg
│   │   │   │   ├── progress.png
│   │   │   │   ├── right_focus.jpg
│   │   │   │   ├── success.gif
│   │   │   │   └── success.png
│   │   │   ├── video.css
│   │   │   ├── video.html
│   │   │   └── video.js
│   │   ├── webapp
│   │   │   └── webapp.html
│   │   └── wordimage
│   │   ├── fClipboard_ueditor.swf
│   │   ├── imageUploader.swf
│   │   ├── tangram.js
│   │   ├── wordimage.html
│   │   └── wordimage.js
│   ├── index.html
│   ├── jsp
│   │   ├── config.json
│   │   └── controller.jsp
│   ├── lang
│   │   ├── en
│   │   │   ├── en.js
│   │   │   └── images
│   │   │   ├── addimage.png
│   │   │   ├── alldeletebtnhoverskin.png
│   │   │   ├── alldeletebtnupskin.png
│   │   │   ├── background.png
│   │   │   ├── button.png
│   │   │   ├── copy.png
│   │   │   ├── deletedisable.png
│   │   │   ├── deleteenable.png
│   │   │   ├── listbackground.png
│   │   │   ├── localimage.png
│   │   │   ├── music.png
│   │   │   ├── rotateleftdisable.png
│   │   │   ├── rotateleftenable.png
│   │   │   ├── rotaterightdisable.png
│   │   │   ├── rotaterightenable.png
│   │   │   └── upload.png
│   │   └── zh-cn
│   │   ├── images
│   │   │   ├── copy.png
│   │   │   ├── localimage.png
│   │   │   ├── music.png
│   │   │   └── upload.png
│   │   └── zh-cn.js
│   ├── themes
│   │   ├── default
│   │   │   ├── css
│   │   │   │   ├── ueditor.css
│   │   │   │   └── ueditor.min.css
│   │   │   ├── dialogbase.css
│   │   │   └── images
│   │   │   ├── anchor.gif
│   │   │   ├── arrow_down.png
│   │   │   ├── arrow.png
│   │   │   ├── arrow_up.png
│   │   │   ├── button-bg.gif
│   │   │   ├── cancelbutton.gif
│   │   │   ├── charts.png
│   │   │   ├── cursor_h.gif
│   │   │   ├── cursor_h.png
│   │   │   ├── cursor_v.gif
│   │   │   ├── cursor_v.png
│   │   │   ├── dialog-title-bg.png
│   │   │   ├── filescan.png
│   │   │   ├── highlighted.gif
│   │   │   ├── icons-all.gif
│   │   │   ├── icons.gif
│   │   │   ├── icons.png
│   │   │   ├── loaderror.png
│   │   │   ├── loading.gif
│   │   │   ├── lock.gif
│   │   │   ├── neweditor-tab-bg.png
│   │   │   ├── pagebreak.gif
│   │   │   ├── scale.png
│   │   │   ├── sortable.png
│   │   │   ├── spacer.gif
│   │   │   ├── sparator_v.png
│   │   │   ├── table-cell-align.png
│   │   │   ├── tangram-colorpicker.png
│   │   │   ├── toolbar_bg.png
│   │   │   ├── unhighlighted.gif
│   │   │   ├── upload.png
│   │   │   ├── videologo.gif
│   │   │   ├── word.gif
│   │   │   └── wordpaste.png
│   │   └── iframe.css
│   ├── third-party
│   │   ├── codemirror
│   │   │   ├── codemirror.css
│   │   │   └── codemirror.js
│   │   ├── highcharts
│   │   │   ├── adapters
│   │   │   │   ├── mootools-adapter.js
│   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   ├── prototype-adapter.js
│   │   │   │   ├── prototype-adapter.src.js
│   │   │   │   ├── standalone-framework.js
│   │   │   │   └── standalone-framework.src.js
│   │   │   ├── highcharts.js
│   │   │   ├── highcharts-more.js
│   │   │   ├── highcharts-more.src.js
│   │   │   ├── highcharts.src.js
│   │   │   ├── modules
│   │   │   │   ├── annotations.js
│   │   │   │   ├── annotations.src.js
│   │   │   │   ├── canvas-tools.js
│   │   │   │   ├── canvas-tools.src.js
│   │   │   │   ├── data.js
│   │   │   │   ├── data.src.js
│   │   │   │   ├── drilldown.js
│   │   │   │   ├── drilldown.src.js
│   │   │   │   ├── exporting.js
│   │   │   │   ├── exporting.src.js
│   │   │   │   ├── funnel.js
│   │   │   │   ├── funnel.src.js
│   │   │   │   ├── heatmap.js
│   │   │   │   ├── heatmap.src.js
│   │   │   │   ├── map.js
│   │   │   │   ├── map.src.js
│   │   │   │   ├── no-data-to-display.js
│   │   │   │   └── no-data-to-display.src.js
│   │   │   └── themes
│   │   │   ├── dark-blue.js
│   │   │   ├── dark-green.js
│   │   │   ├── gray.js
│   │   │   ├── grid.js
│   │   │   └── skies.js
│   │   ├── jquery-1.10.2.js
│   │   ├── jquery-1.10.2.min.js
│   │   ├── jquery-1.10.2.min.map
│   │   ├── snapscreen
│   │   │   └── UEditorSnapscreen.exe
│   │   ├── SyntaxHighlighter
│   │   │   ├── shCoreDefault.css
│   │   │   └── shCore.js
│   │   ├── video-js
│   │   │   ├── font
│   │   │   │   ├── vjs.eot
│   │   │   │   ├── vjs.svg
│   │   │   │   ├── vjs.ttf
│   │   │   │   └── vjs.woff
│   │   │   ├── video.dev.js
│   │   │   ├── video.js
│   │   │   ├── video-js.css
│   │   │   ├── video-js.min.css
│   │   │   └── video-js.swf
│   │   ├── webuploader
│   │   │   ├── Uploader.swf
│   │   │   ├── webuploader.css
│   │   │   ├── webuploader.custom.js
│   │   │   ├── webuploader.custom.min.js
│   │   │   ├── webuploader.flashonly.js
│   │   │   ├── webuploader.flashonly.min.js
│   │   │   ├── webuploader.html5only.js
│   │   │   ├── webuploader.html5only.min.js
│   │   │   ├── webuploader.js
│   │   │   ├── webuploader.min.js
│   │   │   ├── webuploader.withoutimage.js
│   │   │   └── webuploader.withoutimage.min.js
│   │   └── zeroclipboard
│   │   ├── ZeroClipboard.js
│   │   ├── ZeroClipboard.min.js
│   │   └── ZeroClipboard.swf
│   ├── ueditor.all.js
│   ├── ueditor.all.min.js
│   ├── ueditor.config.js
│   ├── ueditor.parse.js
│   └── ueditor.parse.min.js
├── upload
│   ├── image
│   └── productimg
└── WEB-INF
├── classes
│   ├── applicationContext.xml
│   ├── jdbc.properties
│   ├── jxd
│   │   ├── action
│   │   │   ├── CartAction.class
│   │   │   ├── LoginAction.class
│   │   │   ├── OrderAction.class
│   │   │   ├── ProductAction.class
│   │   │   ├── RegistAction.class
│   │   │   └── UserAction.class
│   │   ├── dao
│   │   │   ├── CartDaoI.class
│   │   │   ├── CommentDaoI.class
│   │   │   ├── impl
│   │   │   │   ├── CartDaoImpl.class
│   │   │   │   ├── CommentDaoImpl.class
│   │   │   │   ├── OederDaoImpl.class
│   │   │   │   ├── ProductDaoImpl.class
│   │   │   │   ├── RegistDaoImpl.class
│   │   │   │   ├── SellRankingDaoImpl.class
│   │   │   │   └── UserDaoImpl.class
│   │   │   ├── OrderDaoI.class
│   │   │   ├── ProductDaoI.class
│   │   │   ├── RegistDaoI.class
│   │   │   ├── SellRankingDaoI.class
│   │   │   └── UserDaoI.class
│   │   ├── filter
│   │   │   └── ueditorFilter.class
│   │   ├── model
│   │   │   ├── Cart.class
│   │   │   ├── Cart.hbm.xml
│   │   │   ├── CartToJsp.class
│   │   │   ├── Chathistory.class
│   │   │   ├── Chathistory.hbm.xml
│   │   │   ├── Detailcart.class
│   │   │   ├── Detailcart.hbm.xml
│   │   │   ├── Detailcomment.class
│   │   │   ├── Detailcomment.hbm.xml
│   │   │   ├── Detailorder.class
│   │   │   ├── Detailorder.hbm.xml
│   │   │   ├── Maincomment.class
│   │   │   ├── Maincomment.hbm.xml
│   │   │   ├── Mainorder.class
│   │   │   ├── Mainorder.hbm.xml
│   │   │   ├── OrderToShow.class
│   │   │   ├── Product.class
│   │   │   ├── Product.hbm.xml
│   │   │   ├── Scanhistory.class
│   │   │   ├── Scanhistory.hbm.xml
│   │   │   ├── Sellrank.class
│   │   │   ├── Sellranking.class
│   │   │   ├── Sellranking.hbm.xml
│   │   │   ├── User.class
│   │   │   └── User.hbm.xml
│   │   ├── service
│   │   │   ├── CartServiceI.class
│   │   │   ├── CommentServiceI.class
│   │   │   ├── impl
│   │   │   │   ├── CartServiceImpl.class
│   │   │   │   ├── CommentServiceImpl.class
│   │   │   │   ├── OrderServiceImpl.class
│   │   │   │   ├── ProductServiceImpl.class
│   │   │   │   ├── RegistServiceImpl.class
│   │   │   │   ├── SellRankingServiceImpl.class
│   │   │   │   └── UserServiceImpl.class
│   │   │   ├── OrderServiceI.class
│   │   │   ├── ProductServiceI.class
│   │   │   ├── RegistServiceI.class
│   │   │   ├── SellRankingServiceI.class
│   │   │   └── UserServiceI.class
│   │   ├── test
│   │   │   └── GetIP.class
│   │   └── util
│   │   ├── GetTime.class
│   │   └── QuickSort.class
│   ├── log4j.properties
│   └── struts.xml
├── lib
│   ├── antlr-2.7.6.jar
│   ├── asm-3.3.jar
│   ├── asm-commons-3.3.jar
│   ├── asm-tree-3.3.jar
│   ├── c3p0-0.9.1.jar
│   ├── commons-codec-1.9.jar
│   ├── commons-collections-3.1.jar
│   ├── commons-fileupload-1.2.2.jar
│   ├── commons-fileupload-1.3.1.jar
│   ├── commons-io-2.0.1.jar
│   ├── commons-io-2.4.jar
│   ├── commons-lang3-3.1.jar
│   ├── com.springsource.org.aopalliance-1.0.0.jar
│   ├── com.springsource.org.apache.commons.logging-1.1.1.jar
│   ├── com.springsource.org.apache.log4j-1.2.15.jar
│   ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
│   ├── dom4j-1.6.1.jar
│   ├── freemarker-2.3.19.jar
│   ├── hamcrest-core-1.3.jar
│   ├── hibernate3.jar
│   ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│   ├── javassist-3.11.0.GA.jar
│   ├── javassist-3.12.0.GA.jar
│   ├── json.jar
│   ├── jta-1.1.jar
│   ├── junit-4.11-beta-1.jar
│   ├── log4j-1.2.17.jar
│   ├── mysql-connector-java-5.0.8-bin.jar
│   ├── ognl-3.0.5.jar
│   ├── slf4j-api-1.6.1.jar
│   ├── slf4j-log4j12-1.7.2.jar
│   ├── spring-aop-3.2.0.RELEASE.jar
│   ├── spring-aspects-3.2.0.RELEASE.jar
│   ├── spring-beans-3.2.0.RELEASE.jar
│   ├── spring-context-3.2.0.RELEASE.jar
│   ├── spring-core-3.2.0.RELEASE.jar
│   ├── spring-expression-3.2.0.RELEASE.jar
│   ├── spring-jdbc-3.2.0.RELEASE.jar
│   ├── spring-orm-3.2.0.RELEASE.jar
│   ├── spring-test-3.2.0.RELEASE.jar
│   ├── spring-tx-3.2.0.RELEASE.jar
│   ├── spring-web-3.2.0.RELEASE.jar
│   ├── struts2-core-2.3.7.jar
│   ├── struts2-json-plugin-2.3.7.jar
│   ├── struts2-spring-plugin-2.3.7.jar
│   ├── ueditor-1.1.1.jar
│   └── xwork-core-2.3.7.jar
└── web.xml

106 directories, 511 files

标签:

实例下载地址

2015新项目Ebuy网上商城:SSH/bootstrap/ueditor/mysql/annotation.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警