摘要:
网上有很多解决办法,比如: 使用ant进行编译,之后就打不了断点,这个是ant的编译eclipse不认。 解决方法: 1.要么删除class文件 重新在eclipse中编译 2.在build.xml里的javac标签里加上一句 debug="true" 网上的解释,大家参考下: Eclipse Un 阅读全文
摘要:
eg:同时选择main side 把高度赋值为main $("#main, #side").height(main) 阅读全文
摘要:
getCurrrentSession和openSession的区别,还有getHiberanteTemplate 去网上查 JdbcTemplate去网上查 阅读全文
摘要:
在applicationContext中配置 配置文件中的两个红线框的部分是等价的,写哪一个都可以,都是扫描实体类的。 阅读全文
摘要:
ajax局部异步提交刷新,不支持整个表单的提交。 阅读全文
摘要:
手动配置事务: @Autowired private SessionFactory sessionFactory; Session session=sessionFactory.openSession(); Transaction tx=null; //先开启一个事务 tx=session.begi 阅读全文
摘要:
参数绑定: Hibernate中对动态查询参数绑定提供了丰富的支持,那么什么是查询参数动态绑定呢?其实如果我们熟悉传统JDBC编程的话,我们就不难理解查询参数动态绑定,如下代码传统JDBC的参数绑定: PrepareStatement pre=connection.prepare(“select * 阅读全文
摘要:
SQLQuery query = sessionFactory.getCurrentSession().createSQLQuery(hql);用getCurrentSession()执行不了SQL 如果用getCurrentSession()会报错:hibernate4不能转换为hibernate 阅读全文