- 浏览: 342091 次
- 性别:
- 来自: 北京
-
最新评论
-
孙艳霞111:
java.lang.IllegalStateException: Argument [RedirectAttributes] is of type Model -
llnyxxzj:
如果问题未解决可以看看http://blog.360chwl. ...
Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bea -
u013810758:
楼主求帮助类 ReflectionUtils,Hibernat ...
BaseDao可以这样设计 -
rankx:
你好,楼主可否发一份 ReflectionUtils,Hibe ...
BaseDao可以这样设计
文章列表
第 19 章 提升性能
目录
19.1. 抓取策略(Fetching strategies)
19.1.1. 操作延迟加载的关联
19.1.2. 调整抓取策略(Tuning fetch strategies)
19.1.3. 单端关联代理(Single-ended association proxies)
19.1.4. 实例化集合和代理(Initializing collections and pro ...
$(document).ready()不走的可能原因
- 博客分类:
- JS
1.没有引入jquery
2.类似$("#load_html_data")操作时没有找到load_html_data元素
StringBuffer noticeHql = new StringBuffer("select t from CourseNotice t,EnrClass eClass where t.fstate=0");
noticeHql.append(" and t.teachArrangement in elements( eClass.teachArrangements)");
noticeHql.append(" and eClass.fid=:enrClassId");
noticeHql.append(&q ...
解决:decorators.xml文件里的<decorators defaultdir="/WEB-INF/views/layouts/">写错,"/WEB-INF/views/layouts/"路径不对
2012-5-31 9:42:28 org.apache.catalina.core.ApplicationDispatcher invoke
严重: Servlet.service() for servlet jsp threw exception
javax.servlet.ServletException: File & ...
转:json数据与JAVA数据的转换
- 博客分类:
- java
来源:http://johncon.iteye.com/blog/250788
自己编写了一个工具类,处理页面提交json格式数据到后台,再进行处理成JAVA对象数据
1、DTO:Data Transfer Object,数据传送对象
2、对于日期格式的问题,也已经处理
3、json-lib-2.2.2-jdk13.jar (2.1在日期数组 json->java有问题)
工具类JsonUtil代码如下:
public class JsonUtil {
/**页面传至后台时,json数据在request的参数名称*/
pub ...
原文地址:http://blog.chinaunix.net/u3/111819/showart_2197944.html
jQuery获取Select选择的Text和Value:
语法解释:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text
3. v ...
$(function(){
$("#istoCancel").click(function(){
$.getJSON("${ctx}/learning/webexSystem/webex/remove/${runclassid}", function(json){
if(json.result==false){
alert(json.message);
return ;
}
window.location.reload();
});
});
}) ...
Jquery表单插件ajaxForm用法详解
- 博客分类:
- java
来源:[url]
http://www.open-open.com/lib/view/open1325032463827.html
[/url]
插件主要的方法:
ajaxForm
ajaxSubmit
formToArray
formSerialize
fieldSerialize
fieldValue
clearForm
clearFields
resetForm
示例代码:
查看源码打印?1 // wait for the DOM to be loaded
2 $(document).ready(function() {
3 // bind 'myF ...
解决:1.action里增加:model.addAttribute("enrLearnResume", new EnrLearnResume());
2.jsp页面:<form:form id="edit_form_${enrLearnResume.fid }" modelAttribute="enrLearnResume" action="${ctx}/enrollment/enrLearnResume/save" method="post">
java.lang.Ille ...
解决:一直提示属性xxx未找到,谷歌了一下,有些说是Bean里没有Getter/Setter方法。
最后还是找到原因了。items里的内容缺少${}
<tag:forEach var="entity" items="${enrEmerContacts}"varStatus="status"> </tag:forEach>
2012-5-28 10:06:22 org.apache.catalina.core.ApplicationDispatcher invoke
严重: Servlet.service() ...
解决:删除项目下的lib中的包:jaxb-impl-2.2.5.jar
2012-5-26 9:15:44 org.apache.tomcat.util.digester.SetPropertiesRule begin
警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:lms' did not find a matching property.
2012-5-26 9:15:44 org.apache.cat ...
来源:http://hi.baidu.com/liuspring/blog/item/3262938257ae9094f703a64e.html/cmtid/da766a8d723ec81db31bbaab
相当相当隐蔽的错误
今天周末,被头儿过来改bug
其中一个在hql查询的时候报org.hibernate.hql.ast.QuerySyntaxException: unexpected token: ApplyInfo near line 1, column 23这样的错误,貌似看起来hibernate不认识ApplyInfo这个映射持久类,但是这个类非常确定的是已经映射了,而且在别处 ...
原因:映射对应的列错了,比如应该对应A_ID,却映射了B_ID
解决:注意相应的映射
Caused by: org.hibernate.MappingException: property [_com_ambow_lmsx_learning_entity_TeachTeacher_teachArrangements] not found on entity [com.ambow.lmsx.learning.entity.TeachTeacher]
at org.hibernate.mapping.PersistentClass.getRecursiveProperty(PersistentC ...
原因:对表中的FAUDIT_PERSION 字段在实体里没有映射
解决:在实体里做映射就好
Caused by: org.hibernate.MappingException: Unable to find column with logical name: FAUDIT_PERSION in org.hibernate.mapping.Table(teachplan_student_choose) and its related supertables and secondary tables
at org.hibernate.cfg.Ejb3JoinColumn.checkReferen ...
Could not determine type for: java.util.List
用hibernate 映射好好的竟然出现这个问题
以前也遇到过,但不知道怎么给解决了,今天又遇到了,我用到的是用注解标注的映射关系
后来仔细砍了,原来注解要么写在字段上,要么写在getter上,不能混合使用,否则会报错