整合ssh时报错:Messages: attempt to create saveOrUpdate event with null entity

发布于 2021-11-18 01:01:45 字数 2293 浏览 867 评论 10

 jsp数据提交页面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<s:form action="userAction" namespace="/user" method="post">
	<table width="200" border="1">
		<tr>
			<td>name</td>
			<td><s:textfield name="user.name"/></td>
		</tr>
		<tr>
			<td>password</td>
			<td><s:textfield name="user.pwd"/></td>
		</tr>
		<tr>
			<td colspan="2"><s:submit value="submit"/></td>
		</tr>
	</table>
</s:form>
</body>
</html>

控制台报错:

17:41:16,129 ERROR ParametersInterceptor:34 - Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'user.name' on 'class $Proxy10: Error setting expression 'user.name' with value '[Ljava.lang.String;@12dcbd'
17:41:16,180 ERROR ParametersInterceptor:34 - Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'user.pwd' on 'class $Proxy10: Error setting expression 'user.pwd' with value '[Ljava.lang.String;@1cbcf19'
um----------------------:null

 dao的实现类:

public class S3Impl implements UserDao{

	private SessionFactory sessionFactory = null;
	
	public void setSessionFactory(SessionFactory sessionFactory) {
		this.sessionFactory = sessionFactory;
	}

	@Override
	public boolean create(UserModel um) {
		
		Session session = sessionFactory.getCurrentSession();
		session.save(um);

		return true;
	}

}

 页面报错:

Struts Problem Report
Struts has detected an unhandled exception: 

Messages: attempt to create saveOrUpdate event with null entity 
 
File: org/hibernate/event/spi/SaveOrUpdateEvent.java 
Line number: 62


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

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

发布评论

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

评论(10

夜司空 2021-11-21 08:25:53

Acion类请事先ModelDriver 接口!!

能否归途做我良人 2021-11-21 08:25:53

在action类里定义了user这个变量,以及给这个user定义setter和getter方法了吗??jsp里用了user.pwd,在action里要定义对应的user变量,并且其对象包含对应的pwd属性

沙与沫 2021-11-21 08:25:53

在action类里定义了user这个变量,以及给这个user定义setter和getter方法了吗??jsp里用了user.pwd,在action里要定义对应的user变量,并且其对象包含对应的pwd属性

一个人的旅程 2021-11-21 08:25:53

Acion类请事先ModelDriver 接口!!

勿忘初心 2021-11-21 08:25:53

在action类里定义了user这个变量,以及给这个user定义setter和getter方法了吗??jsp里用了user.pwd,在action里要定义对应的user变量,并且其对象包含对应的pwd属性

空城仅有旧梦在 2021-11-21 08:25:42

user类为空啊,你贴出来的错误已经写得很明显了,看下Struts配置吧

笑红尘 2021-11-21 08:09:44

user类为空啊,你贴出来的错误已经写得很明显了,看下Struts配置吧

奈何桥上唱咆哮 2021-11-21 07:16:27

把你的action贴出来,你的错误可能是action中引用的实体类引起的

夜血缘 2021-11-21 06:25:02

把你的action贴出来,你的错误可能是action中引用的实体类引起的

清风夜微凉 2021-11-20 09:43:04

Acion类请事先ModelDriver 接口!!

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