- 浏览: 534287 次
- 性别:
- 来自: 深圳
最新评论
-
gaolegao2008:
如果报 is_volum 列名找不到之类的,我是从新部署了一个 ...
spring quartz 定时器报错 -
gaolegao2008:
部署到linux上时,还有一种情况就是mysql数据库区分大小 ...
spring quartz 定时器报错 -
qq123zhz:
yahier 写道 对我有帮助,但我看的一个demo程序,却没 ...
spring quartz 定时器报错 -
qq123zhz:
这个要在eclipse的插件环境下运行的,你不懂eclipse ...
GEF 自动布局 -
qq123zhz:
这个很久了,不记得啥时候写的了
json转为Map
文章列表
参加oschina源创会后的若干体会
- 博客分类:
- 生活故事
周末参加了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推送开源组件
- 博客分类:
- java
最近在项目中利用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 跳转
- 博客分类:
- jquery ajax
<%
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 ...