2014年10月29日

apache+tomcat整合后的编码问题

摘要: apache+tomcat整合提供webserver服务的方式是为了实现两个目的:一是方便利用apache http server将客户请求均衡的分给tomcat1,tomcat2....去处理,即负载均衡;二是由于tomcat的html和图片解析功能相对其他服务器如apche等较弱,所以,一般都是... 阅读全文

posted @ 2014-10-29 10:03 程序猴chengxuhou.com 阅读(507) 评论(0) 推荐(0) 编辑

2014年4月25日

zk框架window之间传值操作

摘要: .zul中向Action传递参数: Action中接收参数并且打开新的window@Command // 接收参数 .zul中的 @BindingParam("id") String accountId... 阅读全文

posted @ 2014-04-25 11:48 程序猴chengxuhou.com 阅读(2164) 评论(0) 推荐(0) 编辑

zk框架居中显示

摘要: mode="modal" position="center,top" 阅读全文

posted @ 2014-04-25 09:50 程序猴chengxuhou.com 阅读(428) 评论(0) 推荐(0) 编辑

zk框架销毁Page上的Component

摘要: 销毁Page上的ComponentZK的组件之间是树状结构的,每一组件都只有一个根。从页面上销毁一个组件可以通过下面两种方式来实现:1、 组件不是根组件时:Component.setParent(null)组件是根组件时:Component.setPage(null)2、 Component.det... 阅读全文

posted @ 2014-04-25 08:58 程序猴chengxuhou.com 阅读(441) 评论(0) 推荐(0) 编辑

zk框架中利用map类型传值来创建window,并且传值

摘要: 1 @Command 2 @NotifyChange("accList") 3 public void clear(@BindingParam("id") String accountId) { 4 Map arg = new HashMap(); 5 ... 阅读全文

posted @ 2014-04-25 08:49 程序猴chengxuhou.com 阅读(942) 评论(0) 推荐(0) 编辑

2014年3月22日

pptv破解版程序,能够免费观看所有蓝光和会员影片!

摘要: pptv破解版程序,能够免费观看所有蓝光和会员影片!PPTV网络电视3.4.1.0012绿色版(去广告本地vip版)由Black Hawk精简破解,去掉播放时缓冲.暂停广告.去掉迷你推荐和推荐弹窗.禁止添加PPLive PPAP启动项.退出自动结束PPAP进程(修改主程序文件)破解蓝光高清 收费影视.给大家一个完美的视频体验。破解蓝光高清 收费影视去掉播放时缓冲.暂停广告去掉底部滚动右侧导航广告去掉迷你推荐和推荐弹窗去掉基本设置里无用选项禁止添加PPLive PPAP启动项退出自动结束PPAP进程(修改主程序文件)禁止后台下载广告数据去掉托盘和帮助无用菜单选项去PPTV网页广告:修改C:\WI 阅读全文

posted @ 2014-03-22 11:34 程序猴chengxuhou.com 阅读(1912) 评论(0) 推荐(0) 编辑

2014年1月10日

SQL 触发器 instead of | insert

摘要: create trigger tgr_Inserton Ainstead of insertasprint 'Hello World'goinsert into A values('100')--在触发器之前执行插入goselect * from Ago--禁用disable trigger tgr_Insert on A go--启用触发器enable trigger tgr_Insert on Ago 阅读全文

posted @ 2014-01-10 11:41 程序猴chengxuhou.com 阅读(1704) 评论(0) 推荐(0) 编辑

SQL SERVER 使用select和union插入多条数据

摘要: insert into A(A)select '2' unionselect '3' unionselect '100'goselect * from A 阅读全文

posted @ 2014-01-10 10:23 程序猴chengxuhou.com 阅读(565) 评论(0) 推荐(0) 编辑

SQL SERVER UNION和UNION ALL

摘要: union与union allunion 缺省在合并结果集后消除重复项,union all 指定在合并结果集后保留重复项, 打个比喻吧 比如A表的数据是 A{ 1,4,5,9} B{2,3,4,5}那我执行此语句 select * from A union select * from B 那结果是{1,2,3,4,5,9}如果执行select * from A union all select * from B 结果是{1,2,3,4,4,5,5,9} 阅读全文

posted @ 2014-01-10 10:16 程序猴chengxuhou.com 阅读(426) 评论(0) 推荐(0) 编辑

2014年1月8日

PHP连接MYSQL操作数据库

摘要: PHP连接MYSQL操作数据库 阅读全文

posted @ 2014-01-08 14:03 程序猴chengxuhou.com 阅读(350) 评论(0) 推荐(0) 编辑

导航