`
文章列表
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获取表单元素的值 ? <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 ...
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 ...
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,而非实现类 很多时候我们都习惯的设置为业务类的实现类 其实恰恰是业务类的接口才对
Global site tag (gtag.js) - Google Analytics