请问有谁知道液晶电视打开不久班上有许多男生喜欢我白色坚条,而且白色坚条一会左右,一会聚到屏幕中间,是啥问题

JEECG&V3.0版本新架构基础
JEECG&V3.0版本新架构基础
  JEECG V3.0版本推翻了原有SSH2架构,采用SpringMVC+Hibernate+Spring jdbc基础架构,采用面向声明的开发模式,基于泛型方式编写极少代码即可实现复杂的数据展示、数据编辑、表单处理等功能再配合代码生成器的使用将JavaEE的开发效率提高6倍以上,可以将代码减少60%以上。
  JEECG 新版主要集中三大技术点: 1.代码生成器 2.UI快速开发库 3.在线流程设计
  技术点一:代码生成器,支持多种数据模型,根据表生成对应的Entity,Service,Dao,Action,JSP等,增删改查功能生成直接使用
  技术点二:UI快速开发库,针对WEB UI进行标准式封装,页面统一采用自定义标签实现功能:列表数据展现、页面校验等,标签使用简单清晰且便于维护
  技术点三:在线流程设计,采用开源Activiti流程引擎,实现在线画流程,自定义表单,表单挂靠,业务流转
  JEECG V3.0,采用SpringMVC+Hibernate+Spring jdbc等主流框架
  JEECG V3.0,经过了专业压力测试,性能测试,保证后台数据的准确性和页面访问速度
  支持多种浏览器: IE, 火狐, Google 等浏览器访问速度都很快
  支持数据库: Mysql,Oracle10g等
  基础权限: 用户,角色,菜单权限
  Web容器测试通过的有Jetty和Tomcat6
  要求JDK1.6+
  自定义标签列表页面代码示例:
  &%@ page language="java" contentType="text/ charset=UTF-8" pageEncoding="UTF-8"%&
  &%@include file="/context/mytags.jsp"%&
  &div class="easyui-layout" fit="true"&
  &div region="center" &
  &t:dategrid name="jeecgDemoList" title="开发DEMO列表" actionUrl="jeecgDemoController.do?datagrid" idField="id" fit="true"&
  &t:dgCol title="编号" field="id" hidden="false"&&/t:dgCol&
  &t:dgCol title="用户名" field="userName" query="true"&&/t:dgCol&
  &t:dgCol title="电话号码" sortable="false" field="mobilePhone" width="20" query="true"&&/t:dgCol&
  &t:dgCol title="办公电话" field="officePhone"&&/t:dgCol&
  &t:dgCol title="邮箱" field="email"&&/t:dgCol&
  &t:dgCol title="年龄" sortable="true" field="age"&&/t:dgCol&
  &t:dgCol title="工资" field="sex"&&/t:dgCol&
  &t:dgCol title="性别" field="salary"&&/t:dgCol&
  &t:dgCol title="生日" field="birthday" formatter="yyyy/MM/dd"&&/t:dgCol&
  &t:dgCol title="创建日期" field="createTime" formatter="yyyy-MM-dd hh:mm:ss"&&/t:dgCol&
  &t:dgCol title="操作" field="opt" width="100"&&/t:dgCol&
  &t:dgFunOpt funname="szqm(id)" title="审核" /&
  &t:dgDelOpt title="删除" url="jeecgDemoController.do?del&id={id}" /&
  &t:dgToolBar title="录入" icon="icon-add"&&/t:dgToolBar&
  &t:dgToolBar title="编辑" icon="icon-edit"&&/t:dgToolBar&
  &/t:dategrid&
  &/div&
  &/div&
  &script type="text/javascript"&
  function szqm(id) {
  createwindow('审核', 'jeecgDemoController.do?doCheck&id=' + id);
  &/script&
  自定义标签添加页面示例
  &%@ page language="java" import="java.util.*" contentType="text/ charset=UTF-8" pageEncoding="UTF-8"%&
  &%@include file="/context/mytags.jsp"%&
  &!DOCTYPE html&
  &html&
  &head&
  &title&开发DEMO&/title&
  &t:base type="jquery,easyui,tools"&&/t:base&
  &/head&
scroll="no"&
  &t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="jeecgDemoController.do?save"&
  &input id="id" name="id" type="hidden" value="${jgDemo.id }"&
  &table
cellpadding="0" cellspacing="1" class="formtable"&
  &td align="right" width="15%" nowrap&
  &label class="Validform_label"&
  用户名:
  &/label&
  &td class="value" width="85%"&
  &c:if test="${jgDemo.id!=null }"&
  ${jgDemo.userName }
  &/c:if&
  &c:if test="${jgDemo.id==null }"&
  &input id="userName" class="inputxt" name="userName"
  value="${jgDemo.userName }" datatype="s2-10"&
  &span class="Validform_checktip"&用户名范围在2~10位字符&/span&
  &/c:if&
  &td align="right" nowrap&
  &label class="Validform_label"&
  手机号码:
  &/label&
  &td class="value"&
  &input class="inputxt" name="mobilePhone"
  value="${jgDemo.mobilePhone}" datatype="m" errormsg="手机号码不正确!"
  ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  办公电话:
  &/label&
  &td class="value"&
  &input class="inputxt" name="officePhone"
  value="${jgDemo.officePhone}" datatype="n"
  errormsg="办公室电话不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  常用邮箱:
  &/label&
  &td class="value"&
  &input class="inputxt" name="email" value="${jgDemo.email}"
  datatype="e" errormsg="邮箱格式不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  &/label&
  &td class="value"&
  &input class="inputxt" name="age" value="${jgDemo.age}"
  datatype="n" errormsg="年龄格式不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  &/label&
  &td class="value"&
  &input class="inputxt" name="salary" value="${jgDemo.salary}"
  datatype="d" errormsg="工资格式不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  &/label&
  &td class="value"&
  &input name="birthday" class="easyui-datebox"
  value="&fmt:formatDate value='${jgDemo.birthday }' type="date"/&"
  errormsg="生日格式不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  创建日期:
  &/label&
  &td class="value"&
  &input name="createTime" class="easyui-datetimebox"
  value="${jgDemo.createTime}"
  errormsg="日期格式不正确!" ignore="ignore"&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  &/label&
  &td class="value"&
  &t:comboBox url="jeecgDemoController.do?combox" name="sex" text="userName" id="id"&&/t:comboBox&
  &span class="Validform_checktip"&&/span&
  &td align="right"&
  &label class="Validform_label"&
  &/label&
  &td class="value"&
  &select id="depId" name="depId" datatype="*"&
  &c:forEach items="${departList}" var="depart"&
  &option value="${depart.id }" &c:if test="${depart.id==jgDemo.depId}"&selected="selected"&/c:if&&
  ${depart.departname}
  &/option&
  &/c:forEach&
  &/select&
  &span class="Validform_checktip"&请选择部门&/span&
  &/table&
  &/t:formvalid&
  &/body&
H3C认证Java认证Oracle认证
基础英语软考英语项目管理英语职场英语
.NETPowerBuilderWeb开发游戏开发Perl
二级模拟试题一级模拟试题一级考试经验四级考试资料
软件测试软件外包系统分析与建模敏捷开发
法律法规历年试题软考英语网络管理员系统架构设计师信息系统监理师
高级通信工程师考试大纲设备环境综合能力
路由技术网络存储无线网络网络设备
CPMP考试prince2认证项目范围管理项目配置管理项目管理案例项目经理项目干系人管理
职称考试题目
招生信息考研政治
网络安全安全设置工具使用手机安全
生物识别传感器物联网传输层物联网前沿技术物联网案例分析
Java核心技术J2ME教程
Linux系统管理Linux编程Linux安全AIX教程
Windows系统管理Windows教程Windows网络管理Windows故障
数据库开发Sybase数据库Informix数据库
&&&&&&&&&&&&&&&
希赛网 版权所有 & &&JEECG V3版本结合查询实现方法 - 编程当前位置:& &&&JEECG V3版本结合查询实现方法JEECG V3版本结合查询实现方法&&网友分享于:&&浏览:9次JEECG V3版本组合查询实现方法简述:代码生成器默认生成的查询方式为单字段查询,如果想实现字段组合查询,需要采用如下方式
&&&& 1.这种写法
t:dgToolBar
这个标签不能使用,不然会有冲突,查询form显示不出来;
&&&& 2.查询函数的名字规则&[dategrid组件name]search()&
[1].dategrid组件name
&&t:dategrid name=&userMe&
[2].组合查询DIV
&divid=&userMetb&
[3].查询按钮对应的js方法
&ahref=&#& class=&easyui-linkbutton&iconCls=&icon-search& onclick=&userMesearch()&&查询&/a&
实现步骤:
&&第一步:设置dategrid字段查询属性
query=&true&
第二步:对应query=&true&的dategrid字段设置查询字段组件
&&&&&&&&&&&&&&&&&&&&&
用户名:&input type=&text&name=&userName& id=&userName& style=&width:80px&/&
第三步:设置查询按钮
&&&&&&&&&&a href=&#&class=&easyui-linkbutton& iconCls=&icon-search&onclick=&userListsearch()&&查询&/a&
示例Demo如下:
&%@ pagelanguage=&java& contentType=&text/ charset=UTF-8&pageEncoding=&UTF-8&%&
&=&/context/mytags.jsp&%&
&t:dategridname=&userList& title=&用户管理&actionUrl=&userController.do?datagrid& idField=&id&&
&t:dgColtitle=&编号& field=&id&hidden=&false&&&/t:dgCol&
&t:dgColtitle=&用户名& sortable=&false& field=&userName&query=&true& width=&20&&&/t:dgCol&
&t:dgColtitle=&部门& field=&TSDepart_departname&&&/t:dgCol&
&t:dgColtitle=&真实姓名& field=&realName&query=&true&&&/t:dgCol&
&t:dgColtitle=&状态& sortable=&true& field=&status&replace=&正常_1,禁用_0,超级管理员_-1&&&/t:dgCol&
&t:dgColtitle=&操作& field=&opt&width=&100&&&/t:dgCol&
&t:dgFunOptfunname=&szqm(id)& title=&设置签名& /&
&t:dgDelOpttitle=&删除&url=&userController.do?del&id={id}&userName={userName}& /&
&/t:dategrid&
&divid=&userListtb& style=&padding: 3 height: 25px&&
&&div style=&float:&&
& &a href=&#&class=&easyui-linkbutton& plain=&true&icon=&icon-add&onclick=&add('用户录入','userController.do?addorupdate')&&用户录入&/a&
& &a href=&#&class=&easyui-linkbutton& plain=&true&icon=&icon-add&onclick=&update('用户编辑','userController.do?addorupdate','id')&&用户编辑&/a&
&&div align=&right&&
&&& 用户名:&input type=&text&name=&userName& id=&userName& style=&width:80px&/&
&&& 真实姓名:&input type=&text&name=&realName& id=&realName& style=&width:80px&/&
&& &a href=&#&class=&easyui-linkbutton& iconCls=&icon-search&onclick=&userListsearch()&&查询&/a&
12345678910
12345678910
12345678910 上一篇:下一篇:文章评论相关解决方案 12345678910 Copyright & &&版权所有easyui 封装成tag标签库怎么样? - ITeye问答
easyui 封装成tag标签库怎么样?
计划将UI标签库做成单独开源项目,做成一个组件,方便用户随意集成项目,争取大家的建议,希望大家多多提供宝贵建议!!
这是一个有多行的文本框
&%@ page language="java" contentType="text/ charset=UTF-8" pageEncoding="UTF-8"%&
&%@include file="/context/mytags.jsp"%&
&div class="easyui-layout" fit="true"&
&div region="center" style="padding:1"&
&t:dategrid name="jeecgDemoList" title="开发DEMO列表" actionUrl="jeecgDemoController.do?datagrid" idField="id" fit="true"&
&t:dgCol title="编号" field="id" hidden="false"&&/t:dgCol&
&t:dgCol title="用户名" field="userName" query="true"&&/t:dgCol&
&t:dgCol title="电话号码" sortable="false" field="mobilePhone" width="20" query="true"&&/t:dgCol&
&t:dgCol title="办公电话" field="officePhone"&&/t:dgCol&
&t:dgCol title="邮箱" field="email"&&/t:dgCol&
&t:dgCol title="年龄" sortable="true" field="age"&&/t:dgCol&
&t:dgCol title="工资"
field="sex"&&/t:dgCol&
&t:dgCol title="性别"
field="salary"&&/t:dgCol&
&t:dgCol title="生日" field="birthday" formatter="yyyy/MM/dd"&&/t:dgCol&
&t:dgCol title="创建日期" field="createTime" formatter="yyyy-MM-dd hh:mm:ss"&&/t:dgCol&
&t:dgCol title="操作" field="opt" width="100"&&/t:dgCol&
&t:dgFunOpt funname="szqm(id)" title="审核" /&
&t:dgDelOpt title="删除" url="jeecgDemoController.do?del&id={id}" /&
&t:dgToolBar title="录入" icon="icon-add"&&/t:dgToolBar&
&t:dgToolBar title="编辑" icon="icon-edit"&&/t:dgToolBar&
&/t:dategrid&
楼主精神可嘉,但是真心感觉没大用处
① EasyUI的学习成本已经很低了!甚至比学习你这个标签库的成本还低,官方还有图形实例说明!
② 你这套UI标签库不仅捆绑了EasyUI,而且只实现其基础功能,更要命的是可扩展性比它还差!实际项目往往不仅是增删查改功能,等你发现需要加入复制组件时,为时已晚!
③ 万一过一段时间大家对EasyUI审美疲劳了,万一大家都往Twitter Bootstarp等扁平化、简洁化设计看齐,怎么办?
④ 有没有考虑过EasyUI的商业授权?
⑤ …… 请三思而后行!
以后维护工作,会很难。
我觉得很好!
已解决问题
未解决问题关注微信公众号: PMvideo
springmvc+activiti 完美整合- 流程在线设计+代码生成器+UI快速开发库,提高一半的开发效率
作者:zhangdaiscott
&是一款基于代码生成器的智能开发平台,采用代码生成+手工MERGE半智能开发模式, 可以帮助解决Java项目60%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失扩展性和灵活性。&&&&&JEECG宗旨是:简单功能由代码生成器生成使用; 复杂业务采用表单自定义,业务流程使用工作流来实现、扩展出任务接口,供开发编写业务逻辑。 实现了流程任务节点和任务接口的灵活配置,既保证了公司流程的保密行,又减少了开发人员的工作量。&
JEECG V3.0版本推翻原有SSH2架构,采用SpringMVC+Hibernate+UI快速开发库 基础架构,采用面向声明的开发模式,基于泛型方式编写极少代码即可实现复杂的数据展示、数据编辑、表单处理等功能,再配合代码生成器的使用将JavaEE的开发效率提高6倍以上,可以将代码减少60%以上。&
JEECG V3.0版本四大技术点:&1.代码生成器&2.UI快速开发库&3.在线流程设计&4.系统日志记录
技术点一:代码生成器,支持多种数据模型,根据表生成对应的Entity,Service,Dao,Action,JSP等,增删改查功能生成直接使用
技术点二:UI快速开发库,针对WEB UI进行标准封装,页面统一采用UI标签实现功能:数据datagrid,表单校验,Popup,Tab等,实现JSP页面零JS,开发维护非常高效
技术点三:在线流程定义,采用开源Activiti流程引擎,实现在线画流程,自定义表单,表单挂接,业务流转,流程监控,流程跟踪,流程委托等
新版本特性:&
JEECG V3.0,经过了专业压力测试,性能测试,保证后台数据的准确性和页面访问速度
支持多种浏览器: IE, 火狐, Google 等浏览器访问速度都很快
支持数据库: Mysql,Oracle10g等
基础权限: 用户,角色,菜单权限,按钮权限,数据权限
智能报表集成: 简易的图像报表工具和Excel导入导出
Web容器测试通过的有Jetty和Tomcat6
待推出功能:分布式部署,云计算,移动平台开发,规则引擎,代码生成器(eclipse插件)
要求JDK1.6+
交流群:, , &邮箱:&
联系人:张代浩论坛:&
源码下载:
演示地址:&
网盘(入门视频):
项目演示:&
UI快速开发库演示
[1].Datagrid列表页面代码
%@&page&language="java"&contentType="text/&charset=UTF-8"&pageEncoding="UTF-8"%&&
%@include&file="/context/mytags.jsp"%&&
&class="easyui-layout"&fit="true"&&
&&&region="center"&style="padding:1"&&
&&&name="jeecgDemoList"&title="开发DEMO列表"&actionUrl="jeecgDemoController.do?datagrid"&idField="id"&fit="true"&&
&&&&title="编号"&field="id"&hidden="false"&&
&&&&title="用户名"&field="userName"&query="true"&&
&&&&title="电话号码"&sortable="false"&field="mobilePhone"&width="20"&query="true"&&
&&&&title="办公电话"&field="officePhone"&&
&&&&title="邮箱"&field="email"&&
&&&&title="年龄"&sortable="true"&field="age"&&
&&&&title="工资"&&field="sex"&&
&&&&title="性别"&&field="salary"&&
&&&&title="生日"&field="birthday"&formatter="yyyy/MM/dd"&&
&&&&title="创建日期"&field="createTime"&formatter="yyyy-MM-dd&hh:mm:ss"&&
&&&&title="操作"&field="opt"&width="100"&&
&&&&funname="szqm(id)"&title="审核"&&&
&&&&title="删除"&url="jeecgDemoController.do?del&id={id}"&&&
&&&&title="录入"&icon="icon-add"&&
&&&&title="编辑"&icon="icon-edit"&&
&type="text/javascript"&&
&&&&&&&&function&szqm(id)&{ &&
&&&&&&&&&&&&&&&&createwindow('审核',&'jeecgDemoController.do?doCheck&id='&+&id); &&
&&&&&&&&} &&
&%@ page language="java" contentType="text/ charset=UTF-8" pageEncoding="UTF-8"%&
&%@include file="/context/mytags.jsp"%&
&div class="easyui-layout" fit="true"&
&div region="center" style="padding:1"&
&t:dategrid name="jeecgDemoList" title="开发DEMO列表" actionUrl="jeecgDemoController.do?datagrid" idField="id" fit="true"&
&t:dgCol title="编号" field="id" hidden="false"&&/t:dgCol&
&t:dgCol title="用户名" field="userName" query="true"&&/t:dgCol&
&t:dgCol title="电话号码" sortable="false" field="mobilePhone" width="20" query="true"&&/t:dgCol&
&t:dgCol title="办公电话" field="officePhone"&&/t:dgCol&
&t:dgCol title="邮箱" field="email"&&/t:dgCol&
&t:dgCol title="年龄" sortable="true" field="age"&&/t:dgCol&
&t:dgCol title="工资"
field="sex"&&/t:dgCol&
&t:dgCol title="性别"
field="salary"&&/t:dgCol&
&t:dgCol title="生日" field="birthday" formatter="yyyy/MM/dd"&&/t:dgCol&
&t:dgCol title="创建日期" field="createTime" formatter="yyyy-MM-dd hh:mm:ss"&&/t:dgCol&
&t:dgCol title="操作" field="opt" width="100"&&/t:dgCol&
&t:dgFunOpt funname="szqm(id)" title="审核" /&
&t:dgDelOpt title="删除" url="jeecgDemoController.do?del&id={id}" /&
&t:dgToolBar title="录入" icon="icon-add"&&/t:dgToolBar&
&t:dgToolBar title="编辑" icon="icon-edit"&&/t:dgToolBar&
&/t:dategrid&
&script type="text/javascript"&
function szqm(id) {
createwindow('审核', 'jeecgDemoController.do?doCheck&id=' + id);
[2],Form表单页面代码
&%@&page&language="java"&import="java.util.*"&contentType="text/&charset=UTF-8"&pageEncoding="UTF-8"%& &&
&%@include&file="/context/mytags.jsp"%& &&
&!DOCTYPE&html& &&
&&&title&开发DEMO&/title& &&
&&&t:base&type="jquery,easyui,tools"&&/t:base& &&
&/head& &&
&body&style="overflow-y:&hidden"&scroll="no"& &&
&&&t:formvalid&formid="formobj"&dialog="true"&usePlugin="password"&layout="table"&action="jeecgDemoController.do?save"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&input&id="id"&name="id"&type="hidden"&value="${jgDemo.id&}"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&table&style="width:&600"&cellpadding="0"&cellspacing="1"&class="formtable"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"&width="15%"&nowrap& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&用户名: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"&width="85%"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&c:if&test="${jgDemo.id!=null&}"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&${jgDemo.userName&} &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/c:if& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&c:if&test="${jgDemo.id==null&}"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&id="userName"&class="inputxt"&name="userName"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&value="${jgDemo.userName&}"&datatype="s2-10"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&用户名范围在2~10位字符&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/c:if& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"&nowrap& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&手机号码: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&class="inputxt"&name="mobilePhone"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&value="${jgDemo.mobilePhone}"&datatype="m"&errormsg="手机号码不正确!"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&办公电话: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&class="inputxt"&name="officePhone"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&value="${jgDemo.officePhone}"&datatype="n"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&errormsg="办公室电话不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&常用邮箱: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&class="inputxt"&name="email"&value="${jgDemo.email}"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&datatype="e"&errormsg="邮箱格式不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&年龄: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&class="inputxt"&name="age"&value="${jgDemo.age}"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&datatype="n"&errormsg="年龄格式不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&工资: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&class="inputxt"&name="salary"&value="${jgDemo.salary}"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&datatype="d"&errormsg="工资格式不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&生日: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&name="birthday"&class="easyui-datebox"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&value="&fmt:formatDate&value='${jgDemo.birthday&}'&type="date"/&"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&errormsg="生日格式不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&创建日期: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&input&name="createTime"&class="easyui-datetimebox"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&value="${jgDemo.createTime}"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&errormsg="日期格式不正确!"&ignore="ignore"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&性别: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&t:comboBox&url="jeecgDemoController.do?combox"&name="sex"&text="userName"&id="id"&&/t:comboBox& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&align="right"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&label&class="Validform_label"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&部门: &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/label& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&td&class="value"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&select&id="depId"&&name="depId"&&datatype="*"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&c:forEach&items="${departList}"&var="depart"& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&option&value="${depart.id&}"&&c:if&test="${depart.id==jgDemo.depId}"&selected="selected"&/c:if&& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&${depart.departname} &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/option& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/c:forEach& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/select& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&span&class="Validform_checktip"&请选择部门&/span& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/td& &&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/tr& &&
&&&&&&&&&&&&&&&&&&&&&&&&&/table& &&
&&&&&&&&&&&&&&&&&/t:formvalid& &&
&%@ page language="java" import="java.util.*" contentType="text/ charset=UTF-8" pageEncoding="UTF-8"%&
&%@include file="/context/mytags.jsp"%&
&!DOCTYPE html&
&title&开发DEMO&/title&
&t:base type="jquery,easyui,tools"&&/t:base&
&body style="overflow-y: hidden" scroll="no"&
&t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="jeecgDemoController.do?save"&
&input id="id" name="id" type="hidden" value="${jgDemo.id }"&
&table style="width: 600" cellpadding="0" cellspacing="1" class="formtable"&
&td align="right" width="15%" nowrap&
&label class="Validform_label"&
&td class="value" width="85%"&
&c:if test="${jgDemo.id!=null }"&
${jgDemo.userName }
&c:if test="${jgDemo.id==null }"&
&input id="userName" class="inputxt" name="userName"
value="${jgDemo.userName }" datatype="s2-10"&
&span class="Validform_checktip"&用户名范围在2~10位字符&/span&
&td align="right" nowrap&
&label class="Validform_label"&
&td class="value"&
&input class="inputxt" name="mobilePhone"
value="${jgDemo.mobilePhone}" datatype="m" errormsg="手机号码不正确!"
ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input class="inputxt" name="officePhone"
value="${jgDemo.officePhone}" datatype="n"
errormsg="办公室电话不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input class="inputxt" name="email" value="${jgDemo.email}"
datatype="e" errormsg="邮箱格式不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input class="inputxt" name="age" value="${jgDemo.age}"
datatype="n" errormsg="年龄格式不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input class="inputxt" name="salary" value="${jgDemo.salary}"
datatype="d" errormsg="工资格式不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input name="birthday" class="easyui-datebox"
value="&fmt:formatDate value='${jgDemo.birthday }' type="date"/&"
errormsg="生日格式不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&input name="createTime" class="easyui-datetimebox"
value="${jgDemo.createTime}"
errormsg="日期格式不正确!" ignore="ignore"&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&t:comboBox url="jeecgDemoController.do?combox" name="sex" text="userName" id="id"&&/t:comboBox&
&span class="Validform_checktip"&&/span&
&td align="right"&
&label class="Validform_label"&
&td class="value"&
&select id="depId"
name="depId"
datatype="*"&
&c:forEach items="${departList}" var="depart"&
&option value="${depart.id }" &c:if test="${depart.id==jgDemo.depId}"&selected="selected"&/c:if&&
${depart.departname}
&/c:forEach&
&span class="Validform_checktip"&请选择部门&/span&
&/t:formvalid&
关注微信公众号:PMvideo
项目组没有人对这个东西了解,只是根据网上的demo,编写代码才成功调用,我个人在结束vue前后端分离学习,学习一下,不希望自己以后再次遇见webservice的问题。编写一个简单的xsd文件我是根据spring的springws项目学习,springws的文档要求,要先能看懂和写出一个xsd文件,所以我先学习xsd。xsd是xmlschema的简称,是以xml技术为基础的一种标记语言技术,springws说这是支持范围最广的,不是最好的。我们都知道xml是可以自定义标签的,
大家可能对于Spring的各种XML配置已经产生了厌恶的感觉,Spring官方发布的Springboot已经很长时间了,Springboot是一款“约定优于配置”的轻量级框架;Springboot首先解决的就是各种繁琐的XML配置,你可以不用任何XML配置,进行web服务的搭建,其次是Springboot本身就继承了web服务器,如果说前端开发人员想在本地启动后端服务不需要进行各种配置,几乎可以做到一键启动。再有就是目前大热的微服务,而Springboot恰恰满足了快速开发微服务的开发场景;对于目前主流的框架Spring+MyBatis+redis的集成,好吧直接看代码以下代码是整个开发框架集成完之后的,关于Spring官方那一套如何编写启动类,如何配置端口这些随便google一大把的我就不再本文说明了。下面的代码,
在讲述其模块化应用之前,先总结一下Dagger2,主要从两方面来说明:Dagger2的使用姿势和Dagger2自动生成的源码分析。[TOC]Dagger2使用姿势主要结合Google官方todo+MVP+Dagger2和自己的项目经验来讲述dagger2的使用姿势。定义ModuleModule是类实例提供的工厂模式,Module里面的方法基本都是创建类实例的方法。这样,Dagger2中就有2个维度可以创建类实例:o通过用Inject注解标注的构造函数来创建(以下简称Inject维度)o通过工厂模式的Module来创建(以下简称Module维度)关于Module维度,
自定义裁剪编辑头像,头像图片色度调节B集成代码生成器[正反双向](单表、主表、明细表、树形表,快速开发利器)+快速表单构建器freemaker模版技术,0个代码不用写,生成完整的一个模块,带页面、建表sql脚本,处理类,service等完整模块C集成阿里巴巴数据库连接池druid数据库连接池阿里巴巴的druid。Druid在监控、可扩展性、稳定性和性能方面都有明显的优势D集成安全权限框架shiroShiro是一个用Java语言实现的框架,通过一个简单易用的API提供身份验证和授权,更安全,更可靠E集成ehcache分布式缓存是一个纯Java的进程内缓存框架,具有快速、精干等特点,广泛使用的开源Java分布式缓存。F集成微信接口开发,
随着知识储备增多,渐渐探索出一套弹性动画的实现原理。简介本文将从零开始,一步步解析弹性动画原理,包教包会。本文Demo简单地封装了一个动画库来测试,支持UIView的三种动画类型:Size、Position、Scale,动画运动曲线有:bounce、easeInOut。CALayer动画暂不支持。运动曲线从初中开始,我们就开始接触正弦曲线、余弦曲线,现在真的排上用场了(后悔当初数学没学好)。我们可以通过对正弦余弦做一些处理,来得到动画的运动曲线。弹性动画稍微复杂一些,主要分为两部分,一是波动(波形)、二是衰减,将二者结合就能得到我们想要的动画运动曲线。1淡入淡出运动曲线正弦曲线,Y坐标随着X坐标的变化而变化,新手乍一看,这跟动画根本没有半毛钱关系,我们还需要进行精加工处理,才能使用。正弦曲线不管是弹性动画还是线性动画,我们都有一个起点和终点,
引子   最近在搞一个项目,走在科技前沿的师兄, 摒弃了公司老套的框架模式, 采用了springboot搭建新应用。看到如此简洁的代码 , 深受诱惑。趁周末闲余之时, 背晒阳光, 学起了springboot, 记学习之感。 我们来电 简单粗暴, 搭建个应用run起来 . 本文不介绍细节, 后续会深入
提到了如何在Spock中测试Static的Method,以弥补Spock在这个部份的不足。当时使用的是PowerMock162,只不过随着时间的推移,最新的Mockito与PowerMock组合,在与Spock的集成上并不顺利。Mockito目前已经发展到第二版,但是要在这个版本的Mockito上使用PowerMock,依据官方的说明仍然还停留在试验性质的版本,目前最新可取得的版本是170RC4。如果使用前一篇文章提到的,
IDEA 添加 persistence 时没有 sessionFactory 点击项目,然后F4 Facets -& Spring -& “+” 添加 sessionFactory 的配置文件,如下图 出现没有sessionFactory的原因是,在spring上下文中没有找到sessionFactory

我要回帖

更多关于 有许多人生道理的书 的文章

 

随机推荐