在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Maven+SSM+Bootstrap项目示例

Maven+SSM+Bootstrap项目示例

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:10.46M
  • 下载次数:25
  • 浏览次数:250
  • 发布时间:2020-10-20
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
基于Maven构建,框架使用现在主流的:SpringMVC(4.1)+Spring(4.1)+MyBatis(3.4.0),实现基本增删改查,页面国际化。数据源采用阿里开源的Druid,前端采用基于Bootstrap封装的模板AdminLTE(2.3.6)及Bootstrap的一些插件。MyBaits采用了另外一位博友提供的通用CRUD代码。
【实例截图】
【核心代码】
10964099SSM-Demo
└── SSM-Demo
├── pom.xml
└── src
└── main
├── bin
│   └── ssm-demo.sql
├── java
│   └── com
│   └── cyh
│   ├── core
│   │   ├── annotation
│   │   │   ├── FieldName.java
│   │   │   ├── ID.java
│   │   │   ├── Log.java
│   │   │   ├── PUBVALUE.java
│   │   │   ├── TableName.java
│   │   │   ├── TempField.java
│   │   │   └── TraMethod.java
│   │   ├── aop
│   │   │   ├── Log.java
│   │   │   └── TransactionManager.java
│   │   ├── beans
│   │   │   ├── FmtParm.java
│   │   │   ├── Method.java
│   │   │   ├── Po.java
│   │   │   ├── Pram.java
│   │   │   └── WherePrams.java
│   │   ├── dao
│   │   │   ├── Dao.java
│   │   │   └── impl
│   │   │   └── DaoImpl.java
│   │   ├── spring
│   │   │   └── init
│   │   │   └── InitComplete.java
│   │   ├── sql
│   │   │   ├── exception
│   │   │   │   ├── IdTransformationException.java
│   │   │   │   └── IdTypeException.java
│   │   │   └── where
│   │   │   ├── C.java
│   │   │   └── SqlUtil.java
│   │   └── util
│   │   ├── Formatter.java
│   │   ├── FormatterSql.java
│   │   ├── GenericsUtils.java
│   │   ├── PropertiesUtil.java
│   │   └── SqlLog.java
│   └── sy
│   ├── common
│   │   ├── Constants.java
│   │   ├── DateUtil.java
│   │   ├── file
│   │   │   └── FileCompress.java
│   │   ├── info
│   │   │   ├── EmailUtils.java
│   │   │   └── GenerateLinkUtils.java
│   │   ├── listener
│   │   │   └── Listener.java
│   │   ├── MD5.java
│   │   ├── qrcode
│   │   │   ├── BufferedImageLuminanceSource.java
│   │   │   └── QRCodeUtil.java
│   │   └── task
│   │   └── TaskManager.java
│   ├── dao
│   │   ├── AreaDao.java
│   │   └── CompanyDao.java
│   ├── entity
│   │   ├── Area.java
│   │   ├── bean
│   │   │   └── QueryCondition.java
│   │   └── Company.java
│   ├── service
│   │   ├── IAreaService.java
│   │   ├── ICompanyService.java
│   │   └── impl
│   │   ├── AreaService.java
│   │   └── CompanyService.java
│   └── web
│   ├── AreaController.java
│   ├── CompanyController.java
│   ├── FileUploadController.java
│   ├── upload
│   │   ├── CustomMultipartResolver.java
│   │   ├── FileUploadProgressListener.java
│   │   └── ProgressBean.java
│   ├── UserController.java
│   ├── view
│   │   ├── DatatablesView.java
│   │   └── MessageView.java
│   └── WebController.java
├── resources
│   ├── config.properties
│   ├── log4j.properties
│   ├── messages
│   │   ├── message_en_US.properties
│   │   └── message.properties
│   ├── mybatis-config
│   │   ├── mapper
│   │   │   └── core-mapper.xml
│   │   └── mybatis-config.xml
│   └── spring-config
│   ├── spring-mvc.xml
│   └── spring-mybatis.xml
└── webapp
├── META-INF
│   └── MANIFEST.MF
├── res
│   ├── bootstrap
│   │   ├── css
│   │   │   ├── bootstrap.css
│   │   │   ├── bootstrap.css.map
│   │   │   ├── bootstrap.min.css
│   │   │   └── bootstrap.min.css.map
│   │   ├── 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
│   ├── dist
│   │   ├── css
│   │   │   ├── AdminLTE.css
│   │   │   ├── AdminLTE.min.css
│   │   │   └── skins
│   │   │   ├── _all-skins.css
│   │   │   ├── _all-skins.min.css
│   │   │   ├── skin-black.css
│   │   │   ├── skin-black-light.css
│   │   │   ├── skin-black-light.min.css
│   │   │   ├── skin-black.min.css
│   │   │   ├── skin-blue.css
│   │   │   ├── skin-blue-light.css
│   │   │   ├── skin-blue-light.min.css
│   │   │   ├── skin-blue.min.css
│   │   │   ├── skin-green.css
│   │   │   ├── skin-green-light.css
│   │   │   ├── skin-green-light.min.css
│   │   │   ├── skin-green.min.css
│   │   │   ├── skin-purple.css
│   │   │   ├── skin-purple-light.css
│   │   │   ├── skin-purple-light.min.css
│   │   │   ├── skin-purple.min.css
│   │   │   ├── skin-red.css
│   │   │   ├── skin-red-light.css
│   │   │   ├── skin-red-light.min.css
│   │   │   ├── skin-red.min.css
│   │   │   ├── skin-yellow.css
│   │   │   ├── skin-yellow-light.css
│   │   │   ├── skin-yellow-light.min.css
│   │   │   └── skin-yellow.min.css
│   │   ├── img
│   │   │   ├── avatar04.png
│   │   │   ├── avatar2.png
│   │   │   ├── avatar3.png
│   │   │   ├── avatar5.png
│   │   │   ├── avatar.png
│   │   │   ├── boxed-bg.jpg
│   │   │   ├── boxed-bg.png
│   │   │   ├── credit
│   │   │   │   ├── american-express.png
│   │   │   │   ├── cirrus.png
│   │   │   │   ├── mastercard.png
│   │   │   │   ├── mestro.png
│   │   │   │   ├── paypal2.png
│   │   │   │   ├── paypal.png
│   │   │   │   └── visa.png
│   │   │   ├── default-50x50.gif
│   │   │   ├── icons.png
│   │   │   ├── photo1.png
│   │   │   ├── photo2.png
│   │   │   ├── photo3.jpg
│   │   │   ├── photo4.jpg
│   │   │   ├── user1-128x128.jpg
│   │   │   ├── user2-160x160.jpg
│   │   │   ├── user3-128x128.jpg
│   │   │   ├── user4-128x128.jpg
│   │   │   ├── user5-128x128.jpg
│   │   │   ├── user6-128x128.jpg
│   │   │   ├── user7-128x128.jpg
│   │   │   └── user8-128x128.jpg
│   │   └── js
│   │   ├── app.js
│   │   ├── app.min.js
│   │   ├── demo.js
│   │   └── pages
│   │   ├── dashboard2.js
│   │   └── dashboard.js
│   ├── google
│   │   ├── fonts
│   │   │   ├── 1YwB1sO8YE1Lyjf12WNiUA.woff2
│   │   │   ├── AIed271kqQlcIRSOnQH0yejkDdvhIIFj_YMdgqpnSB0.woff2
│   │   │   ├── AIed271kqQlcIRSOnQH0yYlIZu-HDpmDIZMigmsroc4.woff2
│   │   │   ├── BjAYBlHtW3CJxDcjzrnZCCYE0-AqJ3nfInTTiDXDjU4.woff2
│   │   │   ├── BjAYBlHtW3CJxDcjzrnZCI4P5ICox8Kq3LLUNMylGO4.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJejkDdvhIIFj_YMdgqpnSB0.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJQalQocB-__pDVGhF3uS2Ks.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJSFaMxiho_5XQnyRZzQsrZs.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJS_vZmeiCMnoWNN9rHBYaTc.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJWhQUTDJGru-0vvUpABgH8I.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJYlIZu-HDpmDIZMigmsroc4.woff2
│   │   │   ├── dazS1PrQQuCxC3iOAJFEJZ6iIh_FvlUHQwED9Yt5Kbw.woff2
│   │   │   ├── H2DMvhDLycM56KNuAtbJYA.woff2
│   │   │   ├── ObQr5XYcoH0WBoUxiaYK3_Y6323mHUZFJMgTvxaG2iE.woff2
│   │   │   ├── UyBMtLsHKBKXelqf4x7VRQ.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37ZiYE0-AqJ3nfInTTiDXDjU4.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37ZjTOQ_MqJVwkKsUn0wKzc2I.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37ZjUj_cnvWIuuBMVgbX098Mw.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37ZkbcKLIaa1LC45dFaAfauRA.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37Zmo_sUJ8uO4YLWRInS22T3Y.woff2
│   │   │   ├── y7lebkjgREBJK96VQi37Zo4P5ICox8Kq3LLUNMylGO4.woff2
│   │   │   └── y7lebkjgREBJK96VQi37Zr6up8jxqWt8HVA3mDhkV_0.woff2
│   │   └── google-font.css
│   ├── images
│   │   ├── stark2.png
│   │   ├── starky.png
│   │   ├── stars2.png
│   │   ├── starsy.png
│   │   ├── step1.png
│   │   ├── step24-1.png
│   │   ├── step24-2.png
│   │   ├── step24-3.png
│   │   ├── step24-4.png
│   │   ├── step2.png
│   │   ├── step3.png
│   │   └── step4.png
│   ├── plugins
│   │   ├── bootstrap-slider
│   │   │   ├── bootstrap-slider.js
│   │   │   └── slider.css
│   │   ├── bootstrap-wysihtml5
│   │   │   ├── bootstrap3-wysihtml5.all.js
│   │   │   ├── bootstrap3-wysihtml5.all.min.js
│   │   │   ├── bootstrap3-wysihtml5.css
│   │   │   └── bootstrap3-wysihtml5.min.css
│   │   ├── chartjs
│   │   │   ├── Chart.js
│   │   │   └── Chart.min.js
│   │   ├── ckeditor
│   │   │   ├── adapters
│   │   │   │   └── jquery.js
│   │   │   ├── build-config.js
│   │   │   ├── CHANGES.md
│   │   │   ├── ckeditor.js
│   │   │   ├── config.js
│   │   │   ├── contents.css
│   │   │   ├── lang
│   │   │   │   ├── af.js
│   │   │   │   ├── ar.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
│   │   │   │   ├── 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
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── 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
│   │   │   │   ├── dialog
│   │   │   │   │   └── dialogDefinition.js
│   │   │   │   ├── icons_hidpi.png
│   │   │   │   ├── icons.png
│   │   │   │   ├── image
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   └── image.js
│   │   │   │   │   └── images
│   │   │   │   │   └── noimage.png
│   │   │   │   ├── link
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   └── link.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── anchor.png
│   │   │   │   │   └── hidpi
│   │   │   │   │   └── anchor.png
│   │   │   │   ├── magicline
│   │   │   │   │   └── images
│   │   │   │   │   ├── hidpi
│   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   └── icon-rtl.png
│   │   │   │   │   ├── icon.png
│   │   │   │   │   └── icon-rtl.png
│   │   │   │   ├── pastefromword
│   │   │   │   │   └── filter
│   │   │   │   │   └── default.js
│   │   │   │   ├── scayt
│   │   │   │   │   ├── CHANGELOG.md
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   └── README.md
│   │   │   │   ├── specialchar
│   │   │   │   │   └── dialogs
│   │   │   │   │   ├── lang
│   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   ├── ar.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
│   │   │   │   │   │   ├── 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
│   │   │   │   └── wsc
│   │   │   │   ├── dialogs
│   │   │   │   │   ├── ciframe.html
│   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   ├── wsc.css
│   │   │   │   │   ├── wsc_ie.js
│   │   │   │   │   └── wsc.js
│   │   │   │   ├── LICENSE.md
│   │   │   │   └── README.md
│   │   │   ├── 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
│   │   │   │   ├── dialog.css
│   │   │   │   ├── dialog_ie7.css
│   │   │   │   ├── dialog_ie8.css
│   │   │   │   ├── dialog_ie.css
│   │   │   │   ├── dialog_iequirks.css
│   │   │   │   ├── editor.css
│   │   │   │   ├── editor_gecko.css
│   │   │   │   ├── editor_ie7.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
│   │   ├── colorpicker
│   │   │   ├── bootstrap-colorpicker.css
│   │   │   ├── bootstrap-colorpicker.js
│   │   │   ├── bootstrap-colorpicker.min.css
│   │   │   ├── bootstrap-colorpicker.min.js
│   │   │   └── img
│   │   │   ├── alpha-horizontal.png
│   │   │   ├── alpha.png
│   │   │   ├── hue-horizontal.png
│   │   │   ├── hue.png
│   │   │   └── saturation.png
│   │   ├── datatables
│   │   │   ├── dataTables.bootstrap.css
│   │   │   ├── dataTables.bootstrap.js
│   │   │   ├── dataTables.bootstrap.min.js
│   │   │   ├── extensions
│   │   │   │   ├── AutoFill
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.autoFill.css
│   │   │   │   │   │   └── dataTables.autoFill.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── columns.html
│   │   │   │   │   │   ├── complete-callback.html
│   │   │   │   │   │   ├── fill-both.html
│   │   │   │   │   │   ├── fill-horizontal.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── scrolling.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   └── step-callback.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── filler.png
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.autoFill.js
│   │   │   │   │   │   └── dataTables.autoFill.min.js
│   │   │   │   │   └── Readme.txt
│   │   │   │   ├── ColReorder
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.colReorder.css
│   │   │   │   │   │   └── dataTables.colReorder.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── alt_insert.html
│   │   │   │   │   │   ├── col_filter.html
│   │   │   │   │   │   ├── colvis.html
│   │   │   │   │   │   ├── fixedcolumns.html
│   │   │   │   │   │   ├── fixedheader.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── jqueryui.html
│   │   │   │   │   │   ├── new_init.html
│   │   │   │   │   │   ├── predefined.html
│   │   │   │   │   │   ├── realtime.html
│   │   │   │   │   │   ├── reset.html
│   │   │   │   │   │   ├── scrolling.html
│   │   │   │   │   │   ├── server_side.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   └── state_save.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── insert.png
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.colReorder.js
│   │   │   │   │   │   └── dataTables.colReorder.min.js
│   │   │   │   │   ├── License.txt
│   │   │   │   │   └── Readme.md
│   │   │   │   ├── ColVis
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.colVis.css
│   │   │   │   │   │   ├── dataTables.colvis.jqueryui.css
│   │   │   │   │   │   └── dataTables.colVis.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── button_order.html
│   │   │   │   │   │   ├── exclude_columns.html
│   │   │   │   │   │   ├── group_columns.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── jqueryui.html
│   │   │   │   │   │   ├── mouseover.html
│   │   │   │   │   │   ├── new_init.html
│   │   │   │   │   │   ├── restore.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   ├── text.html
│   │   │   │   │   │   ├── title_callback.html
│   │   │   │   │   │   ├── two_tables.html
│   │   │   │   │   │   └── two_tables_identical.html
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.colVis.js
│   │   │   │   │   │   └── dataTables.colVis.min.js
│   │   │   │   │   ├── License.txt
│   │   │   │   │   └── Readme.md
│   │   │   │   ├── FixedColumns
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.fixedColumns.css
│   │   │   │   │   │   └── dataTables.fixedColumns.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── bootstrap.html
│   │   │   │   │   │   ├── col_filter.html
│   │   │   │   │   │   ├── colvis.html
│   │   │   │   │   │   ├── css_size.html
│   │   │   │   │   │   ├── index_column.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── left_right_columns.html
│   │   │   │   │   │   ├── right_column.html
│   │   │   │   │   │   ├── rowspan.html
│   │   │   │   │   │   ├── server-side-processing.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   ├── size_fixed.html
│   │   │   │   │   │   ├── size_fluid.html
│   │   │   │   │   │   └── two_columns.html
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.fixedColumns.js
│   │   │   │   │   │   └── dataTables.fixedColumns.min.js
│   │   │   │   │   ├── License.txt
│   │   │   │   │   └── Readme.md
│   │   │   │   ├── FixedHeader
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.fixedHeader.css
│   │   │   │   │   │   └── dataTables.fixedHeader.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── header_footer.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   ├── top_left_right.html
│   │   │   │   │   │   ├── two_tables.html
│   │   │   │   │   │   └── zIndexes.html
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.fixedHeader.js
│   │   │   │   │   │   └── dataTables.fixedHeader.min.js
│   │   │   │   │   └── Readme.txt
│   │   │   │   ├── KeyTable
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.keyTable.css
│   │   │   │   │   │   └── dataTables.keyTable.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── events.html
│   │   │   │   │   │   ├── html.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── scrolling.html
│   │   │   │   │   │   └── simple.html
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.keyTable.js
│   │   │   │   │   │   └── dataTables.keyTable.min.js
│   │   │   │   │   └── Readme.txt
│   │   │   │   ├── Responsive
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.responsive.css
│   │   │   │   │   │   └── dataTables.responsive.scss
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── child-rows
│   │   │   │   │   │   │   ├── column-control.html
│   │   │   │   │   │   │   ├── custom-renderer.html
│   │   │   │   │   │   │   ├── disable-child-rows.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── right-column.html
│   │   │   │   │   │   │   └── whole-row-control.html
│   │   │   │   │   │   ├── display-control
│   │   │   │   │   │   │   ├── auto.html
│   │   │   │   │   │   │   ├── classes.html
│   │   │   │   │   │   │   ├── complexHeader.html
│   │   │   │   │   │   │   ├── fixedHeader.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── init-classes.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── initialisation
│   │   │   │   │   │   │   ├── ajax.html
│   │   │   │   │   │   │   ├── className.html
│   │   │   │   │   │   │   ├── default.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── new.html
│   │   │   │   │   │   │   └── option.html
│   │   │   │   │   │   └── styling
│   │   │   │   │   │   ├── bootstrap.html
│   │   │   │   │   │   ├── compact.html
│   │   │   │   │   │   ├── foundation.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── scrolling.html
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.responsive.js
│   │   │   │   │   │   └── dataTables.responsive.min.js
│   │   │   │   │   ├── License.txt
│   │   │   │   │   └── Readme.md
│   │   │   │   ├── Scroller
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── dataTables.scroller.css
│   │   │   │   │   │   └── dataTables.scroller.min.css
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── api_scrolling.html
│   │   │   │   │   │   ├── data
│   │   │   │   │   │   │   ├── 2500.txt
│   │   │   │   │   │   │   └── ssp.php
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── large_js_source.html
│   │   │   │   │   │   ├── server-side_processing.html
│   │   │   │   │   │   ├── simple.html
│   │   │   │   │   │   └── state_saving.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── loading-background.png
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── dataTables.scroller.js
│   │   │   │   │   │   └── dataTables.scroller.min.js
│   │   │   │   │   └── Readme.txt
│   │   │   │   └── TableTools
│   │   │   │   ├── css
│   │   │   │   │   ├── dataTables.tableTools.css
│   │   │   │   │   └── dataTables.tableTools.min.css
│   │   │   │   ├── examples
│   │   │   │   │   ├── ajax.html
│   │   │   │   │   ├── alter_buttons.html
│   │   │   │   │   ├── bootstrap.html
│   │   │   │   │   ├── button_text.html
│   │   │   │   │   ├── collection.html
│   │   │   │   │   ├── defaults.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── jqueryui.html
│   │   │   │   │   ├── multi_instance.html
│   │   │   │   │   ├── multiple_tables.html
│   │   │   │   │   ├── new_init.html
│   │   │   │   │   ├── pdf_message.html
│   │   │   │   │   ├── plug-in.html
│   │   │   │   │   ├── select_column.html
│   │   │   │   │   ├── select_multi.html
│   │   │   │   │   ├── select_os.html
│   │   │   │   │   ├── select_single.html
│   │   │   │   │   ├── simple.html
│   │   │   │   │   └── swf_path.html
│   │   │   │   ├── images
│   │   │   │   │   ├── collection_hover.png
│   │   │   │   │   ├── collection.png
│   │   │   │   │   ├── copy_hover.png
│   │   │   │   │   ├── copy.png
│   │   │   │   │   ├── csv_hover.png
│   │   │   │   │   ├── csv.png
│   │   │   │   │   ├── pdf_hover.png
│   │   │   │   │   ├── pdf.png
│   │   │   │   │   ├── print_hover.png
│   │   │   │   │   ├── print.png
│   │   │   │   │   ├── psd
│   │   │   │   │   │   ├── collection.psd
│   │   │   │   │   │   ├── copy document.psd
│   │   │   │   │   │   ├── file_types.psd
│   │   │   │   │   │   └── printer.psd
│   │   │   │   │   ├── xls_hover.png
│   │   │   │   │   └── xls.png
│   │   │   │   ├── js
│   │   │   │   │   ├── dataTables.tableTools.js
│   │   │   │   │   └── dataTables.tableTools.min.js
│   │   │   │   ├── Readme.md
│   │   │   │   └── swf
│   │   │   │   ├── copy_csv_xls_pdf.swf
│   │   │   │   └── copy_csv_xls.swf
│   │   │   ├── images
│   │   │   │   ├── sort_asc_disabled.png
│   │   │   │   ├── sort_asc.png
│   │   │   │   ├── sort_both.png
│   │   │   │   ├── sort_desc_disabled.png
│   │   │   │   └── sort_desc.png
│   │   │   ├── jquery.dataTables.css
│   │   │   ├── jquery.dataTables.js
│   │   │   ├── jquery.dataTables.min.css
│   │   │   ├── jquery.dataTables.min.js
│   │   │   └── jquery.dataTables_themeroller.css
│   │   ├── datepicker
│   │   │   ├── bootstrap-datepicker.js
│   │   │   ├── datepicker3.css
│   │   │   └── locales
│   │   │   ├── bootstrap-datepicker.ar.js
│   │   │   ├── bootstrap-datepicker.az.js
│   │   │   ├── bootstrap-datepicker.bg.js
│   │   │   ├── bootstrap-datepicker.ca.js
│   │   │   ├── bootstrap-datepicker.cs.js
│   │   │   ├── bootstrap-datepicker.cy.js
│   │   │   ├── bootstrap-datepicker.da.js
│   │   │   ├── bootstrap-datepicker.de.js
│   │   │   ├── bootstrap-datepicker.el.js
│   │   │   ├── bootstrap-datepicker.es.js
│   │   │   ├── bootstrap-datepicker.et.js
│   │   │   ├── bootstrap-datepicker.fa.js
│   │   │   ├── bootstrap-datepicker.fi.js
│   │   │   ├── bootstrap-datepicker.fr.js
│   │   │   ├── bootstrap-datepicker.gl.js
│   │   │   ├── bootstrap-datepicker.he.js
│   │   │   ├── bootstrap-datepicker.hr.js
│   │   │   ├── bootstrap-datepicker.hu.js
│   │   │   ├── bootstrap-datepicker.id.js
│   │   │   ├── bootstrap-datepicker.is.js
│   │   │   ├── bootstrap-datepicker.it.js
│   │   │   ├── bootstrap-datepicker.ja.js
│   │   │   ├── bootstrap-datepicker.ka.js
│   │   │   ├── bootstrap-datepicker.kk.js
│   │   │   ├── bootstrap-datepicker.kr.js
│   │   │   ├── bootstrap-datepicker.lt.js
│   │   │   ├── bootstrap-datepicker.lv.js
│   │   │   ├── bootstrap-datepicker.mk.js
│   │   │   ├── bootstrap-datepicker.ms.js
│   │   │   ├── bootstrap-datepicker.nb.js
│   │   │   ├── bootstrap-datepicker.nl-BE.js
│   │   │   ├── bootstrap-datepicker.nl.js
│   │   │   ├── bootstrap-datepicker.no.js
│   │   │   ├── bootstrap-datepicker.pl.js
│   │   │   ├── bootstrap-datepicker.pt-BR.js
│   │   │   ├── bootstrap-datepicker.pt.js
│   │   │   ├── bootstrap-datepicker.ro.js
│   │   │   ├── bootstrap-datepicker.rs.js
│   │   │   ├── bootstrap-datepicker.rs-latin.js
│   │   │   ├── bootstrap-datepicker.ru.js
│   │   │   ├── bootstrap-datepicker.sk.js
│   │   │   ├── bootstrap-datepicker.sl.js
│   │   │   ├── bootstrap-datepicker.sq.js
│   │   │   ├── bootstrap-datepicker.sv.js
│   │   │   ├── bootstrap-datepicker.sw.js
│   │   │   ├── bootstrap-datepicker.th.js
│   │   │   ├── bootstrap-datepicker.tr.js
│   │   │   ├── bootstrap-datepicker.ua.js
│   │   │   ├── bootstrap-datepicker.vi.js
│   │   │   ├── bootstrap-datepicker.zh-CN.js
│   │   │   └── bootstrap-datepicker.zh-TW.js
│   │   ├── daterangepicker
│   │   │   ├── daterangepicker.css
│   │   │   ├── daterangepicker.js
│   │   │   ├── moment.js
│   │   │   └── moment.min.js
│   │   ├── fastclick
│   │   │   ├── fastclick.js
│   │   │   └── fastclick.min.js
│   │   ├── flot
│   │   │   ├── excanvas.js
│   │   │   ├── excanvas.min.js
│   │   │   ├── jquery.colorhelpers.js
│   │   │   ├── jquery.colorhelpers.min.js
│   │   │   ├── jquery.flot.canvas.js
│   │   │   ├── jquery.flot.canvas.min.js
│   │   │   ├── jquery.flot.categories.js
│   │   │   ├── jquery.flot.categories.min.js
│   │   │   ├── jquery.flot.crosshair.js
│   │   │   ├── jquery.flot.crosshair.min.js
│   │   │   ├── jquery.flot.errorbars.js
│   │   │   ├── jquery.flot.errorbars.min.js
│   │   │   ├── jquery.flot.fillbetween.js
│   │   │   ├── jquery.flot.fillbetween.min.js
│   │   │   ├── jquery.flot.image.js
│   │   │   ├── jquery.flot.image.min.js
│   │   │   ├── jquery.flot.js
│   │   │   ├── jquery.flot.min.js
│   │   │   ├── jquery.flot.navigate.js
│   │   │   ├── jquery.flot.navigate.min.js
│   │   │   ├── jquery.flot.pie.js
│   │   │   ├── jquery.flot.pie.min.js
│   │   │   ├── jquery.flot.resize.js
│   │   │   ├── jquery.flot.resize.min.js
│   │   │   ├── jquery.flot.selection.js
│   │   │   ├── jquery.flot.selection.min.js
│   │   │   ├── jquery.flot.stack.js
│   │   │   ├── jquery.flot.stack.min.js
│   │   │   ├── jquery.flot.symbol.js
│   │   │   ├── jquery.flot.symbol.min.js
│   │   │   ├── jquery.flot.threshold.js
│   │   │   ├── jquery.flot.threshold.min.js
│   │   │   ├── jquery.flot.time.js
│   │   │   └── jquery.flot.time.min.js
│   │   ├── fontawesome
│   │   │   ├── css
│   │   │   │   ├── font-awesome.css
│   │   │   │   ├── font-awesome-ie7.css
│   │   │   │   ├── font-awesome-ie7.min.css
│   │   │   │   └── font-awesome.min.css
│   │   │   └── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   └── fontawesome-webfont.woff2
│   │   ├── fullcalendar
│   │   │   ├── fullcalendar.css
│   │   │   ├── fullcalendar.js
│   │   │   ├── fullcalendar.min.css
│   │   │   ├── fullcalendar.min.js
│   │   │   └── fullcalendar.print.css
│   │   ├── iCheck
│   │   │   ├── all.css
│   │   │   ├── flat
│   │   │   │   ├── aero@2x.png
│   │   │   │   ├── aero.css
│   │   │   │   ├── aero.png
│   │   │   │   ├── _all.css
│   │   │   │   ├── blue@2x.png
│   │   │   │   ├── blue.css
│   │   │   │   ├── blue.png
│   │   │   │   ├── flat@2x.png
│   │   │   │   ├── flat.css
│   │   │   │   ├── flat.png
│   │   │   │   ├── green@2x.png
│   │   │   │   ├── green.css
│   │   │   │   ├── green.png
│   │   │   │   ├── grey@2x.png
│   │   │   │   ├── grey.css
│   │   │   │   ├── grey.png
│   │   │   │   ├── orange@2x.png
│   │   │   │   ├── orange.css
│   │   │   │   ├── orange.png
│   │   │   │   ├── pink@2x.png
│   │   │   │   ├── pink.css
│   │   │   │   ├── pink.png
│   │   │   │   ├── purple@2x.png
│   │   │   │   ├── purple.css
│   │   │   │   ├── purple.png
│   │   │   │   ├── red@2x.png
│   │   │   │   ├── red.css
│   │   │   │   ├── red.png
│   │   │   │   ├── yellow@2x.png
│   │   │   │   ├── yellow.css
│   │   │   │   └── yellow.png
│   │   │   ├── futurico
│   │   │   │   ├── futurico@2x.png
│   │   │   │   ├── futurico.css
│   │   │   │   └── futurico.png
│   │   │   ├── icheck.js
│   │   │   ├── icheck.min.js
│   │   │   ├── line
│   │   │   │   ├── aero.css
│   │   │   │   ├── _all.css
│   │   │   │   ├── blue.css
│   │   │   │   ├── green.css
│   │   │   │   ├── grey.css
│   │   │   │   ├── line@2x.png
│   │   │   │   ├── line.css
│   │   │   │   ├── line.png
│   │   │   │   ├── orange.css
│   │   │   │   ├── pink.css
│   │   │   │   ├── purple.css
│   │   │   │   ├── red.css
│   │   │   │   └── yellow.css
│   │   │   ├── minimal
│   │   │   │   ├── aero@2x.png
│   │   │   │   ├── aero.css
│   │   │   │   ├── aero.png
│   │   │   │   ├── _all.css
│   │   │   │   ├── blue@2x.png
│   │   │   │   ├── blue.css
│   │   │   │   ├── blue.png
│   │   │   │   ├── green@2x.png
│   │   │   │   ├── green.css
│   │   │   │   ├── green.png
│   │   │   │   ├── grey@2x.png
│   │   │   │   ├── grey.css
│   │   │   │   ├── grey.png
│   │   │   │   ├── minimal@2x.png
│   │   │   │   ├── minimal.css
│   │   │   │   ├── minimal.png
│   │   │   │   ├── orange@2x.png
│   │   │   │   ├── orange.css
│   │   │   │   ├── orange.png
│   │   │   │   ├── pink@2x.png
│   │   │   │   ├── pink.css
│   │   │   │   ├── pink.png
│   │   │   │   ├── purple@2x.png
│   │   │   │   ├── purple.css
│   │   │   │   ├── purple.png
│   │   │   │   ├── red@2x.png
│   │   │   │   ├── red.css
│   │   │   │   ├── red.png
│   │   │   │   ├── yellow@2x.png
│   │   │   │   ├── yellow.css
│   │   │   │   └── yellow.png
│   │   │   ├── polaris
│   │   │   │   ├── polaris@2x.png
│   │   │   │   ├── polaris.css
│   │   │   │   └── polaris.png
│   │   │   └── square
│   │   │   ├── aero@2x.png
│   │   │   ├── aero.css
│   │   │   ├── aero.png
│   │   │   ├── _all.css
│   │   │   ├── blue@2x.png
│   │   │   ├── blue.css
│   │   │   ├── blue.png
│   │   │   ├── green@2x.png
│   │   │   ├── green.css
│   │   │   ├── green.png
│   │   │   ├── grey@2x.png
│   │   │   ├── grey.css
│   │   │   ├── grey.png
│   │   │   ├── orange@2x.png
│   │   │   ├── orange.css
│   │   │   ├── orange.png
│   │   │   ├── pink@2x.png
│   │   │   ├── pink.css
│   │   │   ├── pink.png
│   │   │   ├── purple@2x.png
│   │   │   ├── purple.css
│   │   │   ├── purple.png
│   │   │   ├── red@2x.png
│   │   │   ├── red.css
│   │   │   ├── red.png
│   │   │   ├── square@2x.png
│   │   │   ├── square.css
│   │   │   ├── square.png
│   │   │   ├── yellow@2x.png
│   │   │   ├── yellow.css
│   │   │   └── yellow.png
│   │   ├── input-mask
│   │   │   ├── jquery.inputmask.date.extensions.js
│   │   │   ├── jquery.inputmask.extensions.js
│   │   │   ├── jquery.inputmask.js
│   │   │   ├── jquery.inputmask.numeric.extensions.js
│   │   │   ├── jquery.inputmask.phone.extensions.js
│   │   │   ├── jquery.inputmask.regex.extensions.js
│   │   │   └── phone-codes
│   │   │   ├── phone-be.json
│   │   │   ├── phone-codes.json
│   │   │   └── readme.txt
│   │   ├── ionicons
│   │   │   ├── css
│   │   │   │   ├── ionicons.css
│   │   │   │   └── ionicons.min.css
│   │   │   └── fonts
│   │   │   ├── ionicons.eot
│   │   │   ├── ionicons.svg
│   │   │   ├── ionicons.ttf
│   │   │   └── ionicons.woff
│   │   ├── ionslider
│   │   │   ├── img
│   │   │   │   ├── sprite-skin-flat.png
│   │   │   │   └── sprite-skin-nice.png
│   │   │   ├── ion.rangeSlider.css
│   │   │   ├── ion.rangeSlider.min.js
│   │   │   ├── ion.rangeSlider.skinFlat.css
│   │   │   └── ion.rangeSlider.skinNice.css
│   │   ├── jQuery
│   │   │   └── jquery-2.2.3.min.js
│   │   ├── jQueryUI
│   │   │   ├── jquery-ui.js
│   │   │   └── jquery-ui.min.js
│   │   ├── jvectormap
│   │   │   ├── jquery-jvectormap-1.2.2.css
│   │   │   ├── jquery-jvectormap-1.2.2.min.js
│   │   │   ├── jquery-jvectormap-usa-en.js
│   │   │   └── jquery-jvectormap-world-mill-en.js
│   │   ├── knob
│   │   │   └── jquery.knob.js
│   │   ├── morris
│   │   │   ├── morris.css
│   │   │   ├── morris.js
│   │   │   └── morris.min.js
│   │   ├── pace
│   │   │   ├── pace.css
│   │   │   ├── pace.js
│   │   │   ├── pace.min.css
│   │   │   └── pace.min.js
│   │   ├── select2
│   │   │   ├── i18n
│   │   │   │   ├── ar.js
│   │   │   │   ├── az.js
│   │   │   │   ├── bg.js
│   │   │   │   ├── ca.js
│   │   │   │   ├── cs.js
│   │   │   │   ├── da.js
│   │   │   │   ├── de.js
│   │   │   │   ├── el.js
│   │   │   │   ├── en.js
│   │   │   │   ├── es.js
│   │   │   │   ├── et.js
│   │   │   │   ├── eu.js
│   │   │   │   ├── fa.js
│   │   │   │   ├── fi.js
│   │   │   │   ├── fr.js
│   │   │   │   ├── gl.js
│   │   │   │   ├── he.js
│   │   │   │   ├── hi.js
│   │   │   │   ├── hr.js
│   │   │   │   ├── hu.js
│   │   │   │   ├── id.js
│   │   │   │   ├── is.js
│   │   │   │   ├── it.js
│   │   │   │   ├── ja.js
│   │   │   │   ├── km.js
│   │   │   │   ├── ko.js
│   │   │   │   ├── lt.js
│   │   │   │   ├── lv.js
│   │   │   │   ├── mk.js
│   │   │   │   ├── ms.js
│   │   │   │   ├── nb.js
│   │   │   │   ├── nl.js
│   │   │   │   ├── pl.js
│   │   │   │   ├── pt-BR.js
│   │   │   │   ├── pt.js
│   │   │   │   ├── ro.js
│   │   │   │   ├── ru.js
│   │   │   │   ├── sk.js
│   │   │   │   ├── sr-Cyrl.js
│   │   │   │   ├── sr.js
│   │   │   │   ├── sv.js
│   │   │   │   ├── th.js
│   │   │   │   ├── tr.js
│   │   │   │   ├── uk.js
│   │   │   │   ├── vi.js
│   │   │   │   ├── zh-CN.js
│   │   │   │   └── zh-TW.js
│   │   │   ├── select2.css
│   │   │   ├── select2.full.js
│   │   │   ├── select2.full.min.js
│   │   │   ├── select2.js
│   │   │   ├── select2.min.css
│   │   │   └── select2.min.js
│   │   ├── slimScroll
│   │   │   ├── jquery.slimscroll.js
│   │   │   └── jquery.slimscroll.min.js
│   │   ├── sparkline
│   │   │   ├── jquery.sparkline.js
│   │   │   └── jquery.sparkline.min.js
│   │   ├── timepicker
│   │   │   ├── bootstrap-timepicker.css
│   │   │   ├── bootstrap-timepicker.js
│   │   │   ├── bootstrap-timepicker.min.css
│   │   │   └── bootstrap-timepicker.min.js
│   │   └── validator
│   │   ├── bootstrapValidator.min.css
│   │   ├── bootstrapValidator.min.js
│   │   └── language
│   │   ├── en_US.js
│   │   └── zh_CN.js
│   ├── startScore.js
│   ├── sweetalert
│   │   ├── sweetalert.css
│   │   └── sweetalert.min.js
│   ├── swiper
│   │   ├── swiper.jquery.min.js
│   │   ├── swiper.min.css
│   │   └── swiper.min.js
│   ├── sy.css
│   ├── sy.js
│   ├── toastr
│   │   ├── toastr.min.css
│   │   └── toastr.min.js
│   └── 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
│   │   ├── xss.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
└── WEB-INF
├── lib
│   └── ueditor-1.1.2.jar
├── pages
│   ├── area.jsp
│   ├── company.jsp
│   ├── error
│   │   └── 404.html
│   ├── include
│   │   ├── common.jsp
│   │   ├── footer.jsp
│   │   ├── header.jsp
│   │   ├── home.jsp
│   │   ├── menu.jsp
│   │   └── title.jsp
│   ├── login.jsp
│   ├── register.jsp
│   ├── timeout.jsp
│   └── user
│   └── user_list.jsp
└── web.xml

276 directories, 1321 files

标签:

实例下载地址

Maven+SSM+Bootstrap项目示例

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警