在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Java语言基础 → Java 语言的极速 WEB + ORM 框架

Java 语言的极速 WEB + ORM 框架

Java语言基础

下载此实例
  • 开发语言:Java
  • 实例大小:18.31M
  • 下载次数:5
  • 浏览次数:33
  • 发布时间:2023-10-11
  • 实例类别:Java语言基础
  • 发 布 人:木头人
  • 文件格式:.zip
  • 所需积分:2
 相关标签: java WEBORM框架

实例介绍



【实例简介】Java 语言的极速 WEB ORM 框架

Easy Object View Admin(简单对象视图管理系统)


  • MVC 架构,设计精巧,使用简单
  • 遵循 COC 原则,支持零配置,无 XML
  • 独创 Db Record 模式,灵活便利
  • ActiveRecord 支持,使数据库开发极致快速
  • 极简、强大、高性能模板引擎 Enjoy,十分钟内掌握 90% 用法
  • 自动加载修改后的 Java 文件,开发过程中无需重启服务
  • AOP支持,拦截器配置灵活,功能强大
  • Plugin 体系结构,扩展性强
  • 多视图支持,支持 Enjoy、FreeMarker、JSP
  • 强大的 Validator 后端校验功能
  • 功能齐全,拥有传统 SSH 框架的绝大部分核心功能
  • 体积小仅 832 KB,并且无第三方依赖


【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── eova
│   ├── README.md
│   ├── pom.xml
│   ├── resources
│   │   ├── beetl.properties
│   │   ├── default
│   │   │   ├── domain.config
│   │   │   ├── eova.config
│   │   │   └── jdbc.config
│   │   ├── dev
│   │   │   ├── domain.config
│   │   │   └── jdbc.config.oracle
│   │   ├── ehcache.xml
│   │   └── log4j.properties
│   ├── sql
│   │   ├── mysql
│   │   │   ├── demo.sql
│   │   │   └── eova.sql
│   │   └── oracle
│   │       ├── DEMO数据.sql
│   │       ├── EOVA数据.sql
│   │       ├── 表结构.sql
│   │       └── 省市区数据.sql
│   ├── src
│   │   └── com
│   │       ├── demo
│   │       │   ├── Demo1Intercept.java
│   │       │   ├── DemoIntercept.java
│   │       │   └── Test.java
│   │       ├── jfinal
│   │       │   └── plugin
│   │       │       └── activerecord
│   │       │           ├── DbPro.java
│   │       │           ├── ModelBuilder.java
│   │       │           ├── Read.txt
│   │       │           └── RecordBuilder.java
│   │       └── oss
│   │           ├── OSSConfig.java
│   │           ├── hotel
│   │           │   └── HotelIntercept.java
│   │           ├── job
│   │           │   ├── AbsJob.java
│   │           │   ├── EveryDayJob.java
│   │           │   ├── EveryHourJob.java
│   │           │   └── EveryMinJob.java
│   │           ├── model
│   │           │   ├── Hotel.java
│   │           │   ├── OrderItem.java
│   │           │   ├── Orders.java
│   │           │   └── Product.java
│   │           ├── player
│   │           │   └── PlayerIntercept.java
│   │           └── product
│   │               └── ProductController.java
│   ├── webapp
│   │   ├── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── antlr4-runtime-4.2.jar
│   │   │   │   ├── beetl-core-2.2.5.jar
│   │   │   │   ├── cglib-nodep-3.1.jar
│   │   │   │   ├── commons-codec-1.9.jar
│   │   │   │   ├── commons-fileupload-1.3.1.jar
│   │   │   │   ├── commons-io-2.4.jar
│   │   │   │   ├── cos-26Dec2008.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   ├── druid-1.0.12.jar
│   │   │   │   ├── ehcache-core-2.5.2.jar
│   │   │   │   ├── eova-1.5.1.jar
│   │   │   │   ├── fastjson-1.1.9.jar
│   │   │   │   ├── httpclient-4.3.6.jar
│   │   │   │   ├── httpcore-4.3.2.jar
│   │   │   │   ├── jetty-server-8.1.8.jar
│   │   │   │   ├── jfinal-2.2-bin.jar
│   │   │   │   ├── joda-time-2.8.2.jar
│   │   │   │   ├── json.jar
│   │   │   │   ├── jxl.jar
│   │   │   │   ├── log4j-1.2.16.jar
│   │   │   │   ├── mysql-connector-java-5.1.20-bin.jar
│   │   │   │   ├── ojdbc14-10.2.0.4.jar
│   │   │   │   ├── quartz-2.1.5.jar
│   │   │   │   ├── slf4j-api-1.6.1.jar
│   │   │   │   ├── slf4j-log4j12-1.6.1.jar
│   │   │   │   ├── ueditor-1.1.1.jar
│   │   │   │   └── zip4j-1.3.1.jar
│   │   │   └── web.xml
│   │   ├── eova
│   │   │   ├── 404.html
│   │   │   ├── 500.html
│   │   │   ├── 520.html
│   │   │   ├── auth
│   │   │   │   ├── btn
│   │   │   │   │   └── roleChoose.html
│   │   │   │   └── roleChoose.html
│   │   │   ├── button
│   │   │   │   ├── btn
│   │   │   │   │   ├── export.html
│   │   │   │   │   └── quick.html
│   │   │   │   └── quick.html
│   │   │   ├── footer.html
│   │   │   ├── header.html
│   │   │   ├── help
│   │   │   │   ├── s1.html
│   │   │   │   └── upgrade.html
│   │   │   ├── htmltag
│   │   │   │   ├── auto.tag
│   │   │   │   ├── check.tag
│   │   │   │   ├── combo.tag
│   │   │   │   ├── edit.tag
│   │   │   │   ├── eova_tag.css
│   │   │   │   ├── eova_tag.js
│   │   │   │   ├── field.tag
│   │   │   │   ├── file.tag
│   │   │   │   ├── find.tag
│   │   │   │   ├── form.tag
│   │   │   │   ├── grid.tag
│   │   │   │   ├── icon.tag
│   │   │   │   ├── img.tag
│   │   │   │   ├── img1.tag
│   │   │   │   ├── img2.tag
│   │   │   │   ├── map.tag
│   │   │   │   ├── number.tag
│   │   │   │   ├── query.tag
│   │   │   │   ├── slider.tag
│   │   │   │   ├── text.tag
│   │   │   │   ├── texts.tag
│   │   │   │   ├── time.tag
│   │   │   │   ├── times.tag
│   │   │   │   ├── tree.tag
│   │   │   │   └── treegrid.tag
│   │   │   ├── icon.html
│   │   │   ├── include.html
│   │   │   ├── index.html
│   │   │   ├── init.html
│   │   │   ├── layout
│   │   │   │   ├── default.html
│   │   │   │   └── dialog.html
│   │   │   ├── login.html
│   │   │   ├── login1.html
│   │   │   ├── main.html
│   │   │   ├── menu
│   │   │   │   ├── btn
│   │   │   │   │   ├── add.html
│   │   │   │   │   ├── export.html
│   │   │   │   │   ├── fun.html
│   │   │   │   │   └── update.html
│   │   │   │   ├── form.html
│   │   │   │   └── menuFun.html
│   │   │   ├── meta
│   │   │   │   ├── btn
│   │   │   │   │   ├── export.html
│   │   │   │   │   └── import.html
│   │   │   │   ├── edit.html
│   │   │   │   └── import.html
│   │   │   ├── meta.html
│   │   │   ├── task
│   │   │   │   └── btn
│   │   │   │       ├── start.html
│   │   │   │       ├── stop.html
│   │   │   │       └── trigger.html
│   │   │   ├── template
│   │   │   │   ├── masterslave
│   │   │   │   │   └── list.html
│   │   │   │   ├── single
│   │   │   │   │   ├── btn
│   │   │   │   │   │   ├── import.html
│   │   │   │   │   │   └── query.html
│   │   │   │   │   ├── dialog
│   │   │   │   │   │   └── import.html
│   │   │   │   │   └── list.html
│   │   │   │   ├── singletree
│   │   │   │   │   ├── btn
│   │   │   │   │   │   └── query.html
│   │   │   │   │   └── list.html
│   │   │   │   └── treetogrid
│   │   │   │       ├── btn
│   │   │   │       │   └── query.html
│   │   │   │       └── list.html
│   │   │   ├── test
│   │   │   │   └── form.html
│   │   │   ├── test.html
│   │   │   ├── uedemo.html
│   │   │   ├── updatePwd.html
│   │   │   └── widget
│   │   │       ├── find
│   │   │       │   ├── find.html
│   │   │       │   └── toolbar.html
│   │   │       └── form
│   │   │           ├── add.html
│   │   │           ├── btn
│   │   │           │   ├── add.html
│   │   │           │   ├── delete.html
│   │   │           │   ├── detail.html
│   │   │           │   └── update.html
│   │   │           ├── detail.html
│   │   │           └── update.html
│   │   ├── favicon.ico
│   │   ├── plugins
│   │   │   ├── My97DatePicker
│   │   │   │   ├── Versions.txt
│   │   │   │   ├── WdatePicker.js
│   │   │   │   ├── calendar.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh-tw.js
│   │   │   │   └── skin
│   │   │   │       ├── WdatePicker.css
│   │   │   │       ├── datePicker.gif
│   │   │   │       ├── default
│   │   │   │       │   ├── datepicker.css
│   │   │   │       │   └── img.gif
│   │   │   │       └── whyGreen
│   │   │   │           ├── bg.jpg
│   │   │   │           ├── datepicker.css
│   │   │   │           └── img.gif
│   │   │   ├── ajaxup
│   │   │   │   └── ajaxfileupload.js
│   │   │   ├── easyui
│   │   │   │   ├── easyloader.js
│   │   │   │   ├── jquery-2.0.3.js
│   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── jquery.portal.js
│   │   │   │   ├── locale
│   │   │   │   │   ├── easyui-lang-en.js
│   │   │   │   │   ├── easyui-lang-zh_CN.js
│   │   │   │   │   └── easyui-lang-zh_TW.js
│   │   │   │   ├── plugins
│   │   │   │   │   ├── Change.txt
│   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   ├── jquery.combo.js
│   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   ├── jquery.combogrid.js
│   │   │   │   │   ├── jquery.combotree.js
│   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   ├── jquery.text.js
│   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   ├── jquery.tooltip.js
│   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   └── jquery.window.js
│   │   │   │   ├── style
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── header_bg.png
│   │   │   │   │   │   ├── listLine.png
│   │   │   │   │   │   ├── logo.png
│   │   │   │   │   │   ├── pixel_0.gif
│   │   │   │   │   │   └── tabs_icons.png
│   │   │   │   │   └── syExtCss.css
│   │   │   │   ├── syExtEasyUI.js
│   │   │   │   ├── syExtHighcharts.js
│   │   │   │   ├── syExtJavascript.js
│   │   │   │   ├── syExtJquery.js
│   │   │   │   └── themes
│   │   │   │       ├── default
│   │   │   │       │   ├── accordion.css
│   │   │   │       │   ├── calendar.css
│   │   │   │       │   ├── combo.css
│   │   │   │       │   ├── combobox.css
│   │   │   │       │   ├── datagrid.css
│   │   │   │       │   ├── datebox.css
│   │   │   │       │   ├── dialog.css
│   │   │   │       │   ├── easyui.css
│   │   │   │       │   ├── images
│   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │       │   │   ├── blank.gif
│   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │       │   │   ├── eova_icon.png
│   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │       │   │   ├── loading.gif
│   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │       │   │   ├── messager_icons.png
│   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │       │   │   ├── panel_tools.png
│   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │       │   │   ├── slider_handle.png
│   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │       │   │   ├── tree_icons.png
│   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │       │   ├── layout.css
│   │   │   │       │   ├── linkbutton.css
│   │   │   │       │   ├── menu.css
│   │   │   │       │   ├── menubutton.css
│   │   │   │       │   ├── messager.css
│   │   │   │       │   ├── numberbox.css
│   │   │   │       │   ├── pagination.css
│   │   │   │       │   ├── panel.css
│   │   │   │       │   ├── progressbar.css
│   │   │   │       │   ├── propertygrid.css
│   │   │   │       │   ├── searchbox.css
│   │   │   │       │   ├── slider.css
│   │   │   │       │   ├── spinner.css
│   │   │   │       │   ├── splitbutton.css
│   │   │   │       │   ├── tabs.css
│   │   │   │       │   ├── text.css
│   │   │   │       │   ├── textbox.css
│   │   │   │       │   ├── tooltip.css
│   │   │   │       │   ├── tree.css
│   │   │   │       │   ├── validatebox.css
│   │   │   │       │   └── window.css
│   │   │   │       ├── icon.css
│   │   │   │       └── icons
│   │   │   │           ├── back.png
│   │   │   │           ├── blank.gif
│   │   │   │           ├── cancel.png
│   │   │   │           ├── cut.png
│   │   │   │           ├── edit_add.png
│   │   │   │           ├── edit_remove.png
│   │   │   │           ├── filesave.png
│   │   │   │           ├── filter.png
│   │   │   │           ├── help.png
│   │   │   │           ├── mini_add.png
│   │   │   │           ├── mini_edit.png
│   │   │   │           ├── mini_refresh.png
│   │   │   │           ├── no.png
│   │   │   │           ├── ok.png
│   │   │   │           ├── pencil.png
│   │   │   │           ├── print.png
│   │   │   │           ├── redo.png
│   │   │   │           ├── reload.png
│   │   │   │           ├── search.png
│   │   │   │           ├── sum.png
│   │   │   │           ├── tip.png
│   │   │   │           └── undo.png
│   │   │   ├── eovaicon
│   │   │   │   ├── ReadMe.txt
│   │   │   │   ├── demo.html
│   │   │   │   ├── icon.7z
│   │   │   │   ├── icon.css
│   │   │   │   ├── icon.js
│   │   │   │   └── jquery-2.0.3.js
│   │   │   ├── jquery-easyui-portal
│   │   │   │   ├── datagrid_data.json
│   │   │   │   ├── jquery.portal.js
│   │   │   │   └── portal.css
│   │   │   ├── nice
│   │   │   │   ├── jquery.validator.css
│   │   │   │   ├── jquery.validator.js
│   │   │   │   └── zh-CN.js
│   │   │   └── ueditor
│   │   │       ├── ReadMe.txt
│   │   │       ├── 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
│   │   │       │   │   │   ├── delimg.png
│   │   │       │   │   │   ├── delimgH.png
│   │   │       │   │   │   ├── empty.png
│   │   │       │   │   │   ├── emptyH.png
│   │   │       │   │   │   ├── eraser.png
│   │   │       │   │   │   ├── redo.png
│   │   │       │   │   │   ├── redoH.png
│   │   │       │   │   │   ├── scale.png
│   │   │       │   │   │   ├── scaleH.png
│   │   │       │   │   │   ├── size.png
│   │   │       │   │   │   ├── undo.png
│   │   │       │   │   │   └── undoH.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
│   │   │       ├── jsp
│   │   │       │   ├── config.json
│   │   │       │   └── controller.jsp
│   │   │       ├── lang
│   │   │       │   └── 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.png
│   │   │       │   │       ├── arrow_down.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
│   │   │       │   ├── SyntaxHighlighter
│   │   │       │   │   ├── shCore.js
│   │   │       │   │   └── shCoreDefault.css
│   │   │       │   ├── codemirror
│   │   │       │   │   ├── codemirror.css
│   │   │       │   │   └── codemirror.js
│   │   │       │   ├── jquery-1.10.2.min.js
│   │   │       │   ├── jquery-1.10.2.min.map
│   │   │       │   ├── snapscreen
│   │   │       │   │   └── UEditorSnapscreen.exe
│   │   │       │   ├── video-js
│   │   │       │   │   ├── font
│   │   │       │   │   │   ├── vjs.eot
│   │   │       │   │   │   ├── vjs.svg
│   │   │       │   │   │   ├── vjs.ttf
│   │   │       │   │   │   └── vjs.woff
│   │   │       │   │   ├── video-js.css
│   │   │       │   │   ├── video-js.min.css
│   │   │       │   │   ├── video-js.swf
│   │   │       │   │   ├── video.dev.js
│   │   │       │   │   └── video.js
│   │   │       │   ├── 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.min.js
│   │   │       ├── ueditor.config.js
│   │   │       └── ueditor.parse.min.js
│   │   ├── product
│   │   │   ├── btn
│   │   │   │   ├── release.html
│   │   │   │   └── update.html
│   │   │   └── update.html
│   │   ├── ui
│   │   │   ├── css
│   │   │   │   └── common.css
│   │   │   ├── easy
│   │   │   │   ├── easy.js
│   │   │   │   ├── easy.min.js
│   │   │   │   ├── jquery.datagrid.js
│   │   │   │   └── src
│   │   │   │       ├── syExtEasyUI.js
│   │   │   │       ├── syExtEasyUI.min.js
│   │   │   │       ├── syExtJavascript.js
│   │   │   │       ├── syExtJavascript.min.js
│   │   │   │       ├── syExtJquery.js
│   │   │   │       └── syExtJquery.min.js
│   │   │   ├── eova
│   │   │   │   ├── css
│   │   │   │   │   ├── eova.css
│   │   │   │   │   └── eova_icon.png
│   │   │   │   ├── eova.js
│   │   │   │   ├── eova.min.js
│   │   │   │   └── src
│   │   │   │       ├── eova.auto.js
│   │   │   │       ├── eova.auto.min.js
│   │   │   │       ├── eova.check.js
│   │   │   │       ├── eova.check.min.js
│   │   │   │       ├── eova.combo.js
│   │   │   │       ├── eova.combo.min.js
│   │   │   │       ├── eova.common.js
│   │   │   │       ├── eova.common.min.js
│   │   │   │       ├── eova.find.js
│   │   │   │       ├── eova.find.min.js
│   │   │   │       ├── eova.icon.js
│   │   │   │       ├── eova.icon.min.js
│   │   │   │       ├── eova.text.js
│   │   │   │       ├── eova.text.min.js
│   │   │   │       ├── eova.time.js
│   │   │   │       └── eova.time.min.js
│   │   │   ├── images
│   │   │   │   ├── 520.png
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── header_bg.png
│   │   │   │   ├── listLine.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── pay
│   │   │   │   │   ├── alipay100.png
│   │   │   │   │   ├── alipay500.png
│   │   │   │   │   ├── weixin100.png
│   │   │   │   │   ├── weixin500.png
│   │   │   │   │   └── zz.gif
│   │   │   │   ├── pixel_0.gif
│   │   │   │   ├── tabs_icons.png
│   │   │   │   └── template
│   │   │   │       ├── master_slave_grid.png
│   │   │   │       └── single_grid.png
│   │   │   ├── js
│   │   │   │   ├── common.js
│   │   │   │   ├── diy
│   │   │   │   │   ├── area.js
│   │   │   │   │   └── test.js
│   │   │   │   ├── jquery-upload.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── jquery.min.map
│   │   │   │   ├── json2-min.js
│   │   │   │   ├── string.js
│   │   │   │   └── template.js
│   │   │   └── login
│   │   │       ├── aiwrap.png
│   │   │       ├── bg.jpg
│   │   │       ├── big.jpg
│   │   │       ├── images
│   │   │       │   └── ui-bg_fine-grain_15_ffffff_60x60.png
│   │   │       ├── jquery-ui-1.8.16.custom.css
│   │   │       ├── jquery-ui-1.8.16.custom.min.js
│   │   │       ├── jquery.keyboard.js
│   │   │       ├── key.png
│   │   │       └── styles.css
│   │   └── widget
│   │       ├── color
│   │       │   └── index.html
│   │       ├── number
│   │       │   └── index.html
│   │       └── password
│   │           └── index.html
│   └── 开发者认证.txt
└── 好例子网_Java 语言的极速 WEB ORM 框.zip

138 directories, 590 files



标签: java WEBORM框架

实例下载地址

Java 语言的极速 WEB + ORM 框架

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警