当用hibernate存储对象时(本来是自动创建数据表的啊!)但是...

但是出错了:ora-00942:表或试图不存在―― 怎么回事?

没有相应的数据库表

查看一下你的
1 *.hbm.xml
2 hibernate.properties
3 数据库中的表

自动创建数据表?
你写了
SchemaExport se = new SchemaExport(conf);
se.create(true, true);吗?