- 浏览: 464814 次
- 性别:
- 来自: 南京
最新评论
-
a1439226817:
能不能发下源码1439226817@qq.com
ExtJsCRUD组件实现 -
w923690968:
[list][*]引用[u][/u][/list]
[JS]Drag And Drop -
zhumingyuan:
您好!用的的是3.2.3版本,按照您的方法配置了一下,但是还是 ...
spring vmc3.1.1 下,通过AnnotationMethodHandlerAdapter配置webBindingInitializer失效解决方案 -
sumo084:
我把xDarkness-MultClrBubble-1.0.j ...
JAVA实现类泡泡屏保效果 -
sumo084:
求源码,楼主好人,630483738@qq.com,谢谢
JAVA实现类泡泡屏保效果
文章列表
使用注解时 打包jar错误
- 博客分类:
- 遇到的Bug
但在使用spring的时候,里面使用了注解,发生了
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitio nException: No bean named '**' is defined at org.springframework.beans.factory.support.DefaultListableBeanFactory. getBeanDefinition(DefaultListableBeanFactory.java:387) a ...
本Blog已迁移至www.abigdreamer.com,不在维护,谢谢大家的关注!
原文
对如下三个文件夹添加local service用户,并设置完全控制权限
%SystemRoot%\LogFiles
%SystemRoot%\System32\wbem
%SystemRoot%\System32\winevt\Logs
依次选择三个文件夹,右键点击属性,在安全标签中,点击编辑-添加,位置中选择计算机名,点击高级-立即查找
在搜索结果中选择local service,确定,并勾选完全控制权限,确定退出即可。
规格模式取代sql查询代码
- 博客分类:
- 企业应用架构模式
原文:http://www.abigdreamer.com/index.php/archives/38
sql查询代码如下:
QueryBuilder qb = new QueryBuilder("select * from XMetaModel where 1=1");
if (StringUtil.isNotEmpty(dga.getParam("SearchName"))) {
qb.append(" and Name like ?", new Object[] { "%" + dga. ...
原文地址:http://www.abigdreamer.com/index.php/archives/506
这是一个已知的BUG:IE6 ,IE7 ,IE9浏览器,当某position:relative元素被带有overflow:auto/scroll属性的块级元素包含时,会表现出postion:absolute的行为。出现滚动条无效的bug。
解决方法:
1.为包含块元素添加属性position:relative 。
2.把该元素的position:relative属性去掉,使用默认的static定位,并通过margin-top等属性实现类似的效果
问题:
spring vmc3.1.1 下,通过AnnotationMethodHandlerAdapter配置webBindingInitializer失效:
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="webBindingInitializer">
<bean class="com.xxx.ark.core.web.C ...
index.hta
<html>
<HTA:APPLICATION ID="oHTA"
APPLICATIONNAME="myApp"
WINDOWSTATE="maximize"
caption="no">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<body scroll=no>
...
[JS]Drag And Drop
- 博客分类:
- API Design
API:
new Draggable(icon, {
// 是否使用镜像:false为拖动源对象,true为拖动拷贝镜像对象
ghosting: true,
// 是否绝对定位:false为相对于父容器定位
absolute: true,
// 是否还原拖动:true为拖动后释放鼠 ...
Ajax:基础的通信方式
- 博客分类:
- API Design
Sky = {};
/*
url-loading object and a request queue built on top of it
*/
Sky.Ajax = function (paramObj) {//url, onload, onerror, method, params, contentType) {
this.req = null;
this.onload = paramObj.onload || function(){};
this.onerror = (paramObj.onerror) ? paramObj.onerror : this.d ...
使用方式:
/**
* Person = Class.extend({
* init: function(){}
* });
*
* Student = Person.extend({
* init: function(){}
* });
*/
源代码:
/**废弃该方式,采用base.js (function() {
var k = false,
t = /xyz/.test(function() {}) ? /\b_super\b/ : /.*/;
this.Class = function() { ...
JS lang:扩展js语言本身
- 博客分类:
- API Design
function $A(iterable) {
if (!iterable) return [];
if (iterable.toArray) return iterable.toArray();
var length = iterable.length || 0, results = new Array(length);
while (length--) results[length] = iterable[length];
return results;
}
Function.prototype.bind = function() {
...
I just upgraded our Hudson from 2.2.0 to 2.2.1 to fix a known bug with emails. Doing this have caused some problems, especially with the dryRun builds.After the upgrade, all the dryRun jobs are failing.
I'm not sure what's happening, but something is causing a svn version conflict:
svn: The p ...
为学生准备的JS入门教程
- 博客分类:
- UI
入门小测验:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gbk">
<title>测试</title>
</head>
<body>
<h3>
功能实现:<br>
1、点击“验证”按钮,执行一个方法,方法实现功能:<br>
验证“文本框”必填,<br>
单选按钮必须选中“男”,<br&g ...
java集合操作-----求两个集合的交集和并集
- 博客分类:
- 算法
java求两个集合的交集和并集
java如何求两个集合的交集和并集呢??其实java的API中已经封装了方法。今天写个简单的例子测试一下:(例子中以java.util.LinkedList为例)
求连个集合的交集:
import java.util.ArrayList;
import java.util.List;
public class TestCollection {
public static void main(String[] args) {
List<String> strList = n ...
Discuz! 数据类型错误,请返回 的解决方案
- 博客分类:
- XP
试着修改Discuz!的默认主题,模板位置很好找,在/template/下的default就是Discuz!的默认主题,复制default改名为自己定义的主题名。
主题目录下有个discuz_style_default.xml的文件,这个应该是描述主题信息的,把default改成自己的,里面的内容就看着改了改。
在Discuz!后台->界面->风格管理已经能看到自己的主题,右面有个安装,然后就出现了这个问题 “数据类型错误,请返回”
很明显是xml的问题,因为我别的都没动。Google搜了一下,有说是PHP.INI 的 zend.ze1_compatibility_ ...