上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 42 下一页

2016年8月29日

window.clearInterval与window.setInterval的用法(

摘要: window.setInterval() 功能:按照指定的周期(以毫秒计)来调用函数或计算表达式。 语法:setInterval(code,millisec) 解释:code:在定时时间到时要执行的JavaScript代码串。 millisec:设定的定时时间,用毫秒数表示。 返回值:定时器的ID值 阅读全文

posted @ 2016-08-29 15:11 struggle_beiJing 阅读(216) 评论(0) 推荐(0) 编辑

2016年8月26日

hibernate 使用in方式删除数据

摘要: 1当删除一个表中数据时,可能会涉及中间表,中间表会有多条数据。这时删除可以采用for循环,逐条删除。但是每次删除都会连接一次数据库 2、可以采用in语句,一次删除即可,参考如下博文 http://newslxw.iteye.com/blog/1487430 阅读全文

posted @ 2016-08-26 16:04 struggle_beiJing 阅读(327) 评论(0) 推荐(0) 编辑

2016年8月25日

hibernate中一对多Set的排序问题

摘要: 因为set是无序的,一旦涉及set排序,就需要配置hibernate的配置文件,参考如下博文 http://ykyfendou.iteye.com/blog/2094325 阅读全文

posted @ 2016-08-25 17:30 struggle_beiJing 阅读(1137) 评论(0) 推荐(0) 编辑

2016年8月21日

struts2 标签的使用之一 s:if(遍历中s:if如何用等)

摘要: http://blog.csdn.net/chinajust/article/details/3922718 阅读全文

posted @ 2016-08-21 00:53 struggle_beiJing 阅读(983) 评论(0) 推荐(0) 编辑

hibernate使用sql语句查询实体时,要写上addEntity

摘要: abDAO.getSession().createSQLQuery(hql).addEntity(对象.class).list(); 参考http://blog.csdn.net/vacblog/article/details/7769976 阅读全文

posted @ 2016-08-21 00:30 struggle_beiJing 阅读(1125) 评论(0) 推荐(0) 编辑

2016年8月14日

struts通过Ajax返回数据时,例如对象类型,没有执行Ajax的回调函数

摘要: <result type="json" name="success"> <param name="includeProperties">msg.*,对象.*</param> <!-- <param name="includeProperties">msg</param> --> </result> 阅读全文

posted @ 2016-08-14 23:05 struggle_beiJing 阅读(243) 评论(0) 推荐(0) 编辑

hibernate 对象状态异常:object references an unsaved transient instance - save the transient instance before flushing

摘要: 我的问题出在,删除的对象对应的表中有一个外键,关联着另外一个表,可是另外一个表中没有数据,所以报了这个错误。 参考http://www.cnblogs.com/onlywujun/archive/2013/04/10/3012719.html 如果关联的外键可以为空,这时需要修改配置文件。加上红色的 阅读全文

posted @ 2016-08-14 22:56 struggle_beiJing 阅读(533) 评论(0) 推荐(0) 编辑

2016年8月9日

${}与 $()区别

摘要: ${}:el表达式 $():jquery语法 阅读全文

posted @ 2016-08-09 18:11 struggle_beiJing 阅读(164) 评论(0) 推荐(0) 编辑

2016年8月5日

hibernate逆向工程生成的实体映射需要修改

摘要: 根据实际情况进行修改,主要2处,注释的位置<!-- 把catalog="platform"删掉 -->,<!-- 替换为native --> <?xml version="1.0"?> <!DOCTYPE hibernate-mapping SYSTEM "http://hibernate.sour 阅读全文

posted @ 2016-08-05 17:42 struggle_beiJing 阅读(240) 评论(0) 推荐(0) 编辑

本地tomcat的start.bat启动时访问不出现小猫图标

摘要: 排除端口错误。看看是不是webapps的root文件夹删除了,如果删除了,从tomcat的压缩包中解压一个root文件夹,房里面即可 阅读全文

posted @ 2016-08-05 12:35 struggle_beiJing 阅读(604) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 42 下一页

导航