- 浏览: 69941 次
- 性别:
- 来自: 河南
最新评论
-
qq313944823:
[url][img][list][*][/list][/img ...
Jsp页面使用jquery ui制作弹出层的详细方法 -
Mr_lioo:
...
SpringMVC Redirect 跳转后如何保存 Model中的数据 -
dbh0512:
return new ModelAndView(new Red ...
SpringMVC Redirect 跳转后如何保存 Model中的数据 -
houzhe11:
不错,,学习中 http://www.331king.com/ ...
腾讯微博授权登陆超简单示例(源自官方Demo) -
anglemoshao:
点错了,踩上了,挺好的
腾讯微博授权登陆超简单示例(源自官方Demo)
文章列表
org.hibernate.QueryParameterException: could not locate named parameter [参数名]
报该错误时 说明程序中你指定的参数找不到 可能是你写错了
注意大小写 空格 或者中英文标点
java.sql.BatchUpdateException: Data truncation: Data too long for column 'userid' at row 1
hibernate在执行的过程中将主键字段改变为guid, guid的长度如果超过数据库的长度的话就会产生下面的错误
修改方法:将数据库中的字段加长,使其足够放下自动生成的guid
浏览器错误提示:
org.hibernate.hql.ast.QuerySyntaxException: SysDictionary is not mapped [from SysDictionary as model where model.typename=?]
说有个对象没映射 这个时候首现检查自己的HQL语句是否把form 后的类名(首字母大写)写成了表名 如果不是,那么原因很可能就是如下:
在Spring 配置文件中--applicationContext.xml
<bean id="sessionFactory" class=" ...
使用Js 简单实现tr点击 tr前的checkbox选中或取消
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus ...
<html>
<head>
<script language=Javascript>
function goAction(url) {
formname.action=url;//formname为当前form的name 多个form时 在此处获取form即可
formname.submit();//提交表单
}
</head>
<body>
<form method= "post " name= "formname &qu ...
js各种获取表单元素的值的方法
- 博客分类:
- JavaScript
JS获取表单元素的值
?
<html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><title>测试</title></head><body><form id="form1" name="form1">文本框 :<input type="text" id ...
- 2012-06-28 09:46
- 浏览 983
- 评论(0)
Javascript复选框全选全取消
- 博客分类:
- JavaScript
1.var checkFlag = true;
2.function ChooseAll() {
3. if (checkFlag) {
4. var inputs = document.all.tags("INPUT");
5. for (var i = 0; i < inputs.length; i++) {
6. if (inputs[i].type == "checkbox" && input ...
- 2012-06-28 09:35
- 浏览 882
- 评论(0)
java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy3] to required type [business.impl.PriceBiz] for property 'priceBiz': no matching editors or conversion strategy found
在java类中设置priceBiz时应该设置的是接口PriceBizIf,而非实现类
很多时候我们都习惯的设置为业务类的实现类 其实恰恰是业务类的接口才对