Hibernate3+Spring2.5+Struts2.3+Jquery1.7异步刷新问题

发布于 2021-11-13 21:38:52 字数 1323 浏览 424 评论 1

     Spring和Struts使用自动装配方式整合,jquery实现Ajax。但是在做异步检测某个输入框的值是否唯一时,Hibernate抛出如下异常:

 2012-02-19 12:41:24,404 ERROR [org.hibernate.AssertionFailure] - an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)

org.hibernate.AssertionFailure: not an association

at org.hibernate.persister.collection.AbstractCollectionPersister.getElementPersister(AbstractCollectionPersister.java:1488)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

 一个Action的检测方法如下:
// 部门编号唯一性
	public String checkDeptNo() {
		if (!StringUtils.hasText(deptNo)) {
			this.msg = "N";
		} else if (deptDao.getByNo(deptNo) == null) {
			this.msg = "T";
		} else {
			this.msg = "F";
		}
		return "msg";
	}
我把上面红色代码去掉,即不做数据库操作,变成如下的代码,但是提示的错误还是和上面一样。
// 部门编号唯一性
	public String checkDeptNo() {
		this.msg = "N";
		return "msg";
	}
 上面抛出的异常很抽象,请大侠指点,谢谢。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷到爆炸 2021-11-14 13:36:27

貌似你的事务配制错了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文