`
qq123zhz
  • 浏览: 534287 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
      周末参加了oschina在深圳举办的源创会,oschina邀请了几位创业者和几位大牛过来,我自己说说自己体会,欢迎拍砖。印象比较深的是cloud foundry和敏捷开发模式。 1、cloud foundry 的介绍的确让我对云计算的理解加深了一个层 ...
/******************************************************************************* * Copyright (c) 2008, Ralf Ebert * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * ...
<extension point="org.eclipse.debug.ui.contextViewBindings"> <contextViewBinding contextId="org.eclipse.debug.ui.debugging" viewId="com.flow.debug.views.DebugView" autoOpen = "true" a ...
扩展eclipse的debug功能。上图   把eclipse的variabe视图内的结构稍微变化了一下。。。  
1、强行添加command使编辑器脏。 getEditor().getCommandStack().execute(new Command() {});   2、 //第一步,对editor的构造函数添加EditDomain public MyGraphicalEditor() { setEditDomain(new DefaultEditDomain(this)); } //第二步,对Command堆栈进行监听 public void init(IEditorSite site, IEditorInput input) throws PartInitExcept ...
 页面输入:男,数据库保存male,女,数据库保存为female。 使用interceptor,typeHandler package cn.dcr.mybatis.util; import java.util.Properties; import org.apache.ibatis.executor.Executor; import org.apache.ibatis.mapping.MappedStatement; import org.apache.ibatis.plugin.Interceptor; import org.apache.ibatis.plugin.I ...
本人采用struts2的注解,配置好后可以在tomcat下运行,但是使用嵌入式jetty运行时,总是出现无法找到action的问题。 package com.action; import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Namespace; import org.apache.struts2.convention.annotation.ParentPackage; import org.apache.struts2.con ...
mybatis中使用ognl的扩展,实现判断传入的字段: Mapper文件中: <select id="getRecentQuestionTitle" parameterType="java.lang.String" resultType="java.lang.String"> select title from song_question where questionState = #{value} <if test="@Ognl@isSolve(value[0],0)&qu ...
mybatis中使用ognl的扩展,实现判断传入的字段: Mapper文件中: <select id="getRecentQuestionTitle" parameterType="java.lang.String" resultType="java.lang.String"> select title from song_question where questionState = #{value} <if test="@Ognl@isSolve(value[0],0)&qu ...
1) 在parameterMap和resultMap中,字段数据类型是java.sql.Types类定义的常量名称。常用的数据类型包括BLOB,CHAR,CLOB,DATE,LONGVARBINARY, INTEGER,NULL,NUMERIC,TIME,TIMESTAMP和VARCHAR等。   2) 对于数据表中NULLBALE的字段,必须在parameterMap和resultMap中指定字段的数据类型。   3) 对于数据类型是DATE,CLOB或BLOB的字段,最好在
1、页面出现<img src="" />2、@BeforeResult的方法中有异常发生,这个时候struts2会调用这个方法多次,这个问题同事有很多人碰到过,解决办法是在标注了@BeforeResult的方法中捕获所有异常,然后添加到 ActionError中。3、出现的情况是在两个有继承关系的Action中都标注有@BeforeResult方法,这个时候struts就会调用子类中的标注有@BeforeResult的方法两次,这个问题可以从xwork的源代码 com.opensymphony.xwork2.interceptor.annotations.An ...
最近在项目中利用com4j实现在线用户短消息互发的功能。挺好用的http基于长轮询的机制。
最近在使用jquery的messager插件,发现了一个奇怪的问题。 如果在<html>前面加上 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   也就是加上doctype ,则正常。 用myeclipse自动生成的jsp文件没有自带doctype。

frameset 跳转

<% String url=basePath+"sys/index.jsp"; out.write("<script>top.location=\""+url+"\";</script>"); %>   不使用如上的方式,在跳转的时候容易出现如图情况。。  
在网上http://www.cnblogs.com/kyle_zhao/archive/2010/02/27/1674819.html,看到这样一篇文章, JQuery实现智能输入提示(仿机票预订网站),下载后看了一下,它把查询的城市信息放在了aircity.js文件里。 //初始化常用机场城市 var commoncitys=new Array(); commoncitys[0]=new Array('SZX','深圳','SHENZHEN','SZ'); commoncitys[1]=new Array('PEK','北京','BEIJING','BJ'); co ...
Global site tag (gtag.js) - Google Analytics