最新回答 / Queen丶Star
你是不是用了Hibernate-tool自动生成的*.hbm.xml,要注意里面的双方多对一,一对多的设置是否正确,如果出错了是不能生成的。另外就是如果你用的eclipse-ide的话,只是把项目布置到服务器中还不够,需要启动一下项目才可以。
2016-10-18
最赞回答 / 四月如你
这个是action多例和单例的原因,如果想解决你的问题,在application配置文件的action的bean中加上scope="prototype"就可以了
2016-10-13
最新回答 / viwq
<filter> <filter-name>OpenSessionInViewFilter</filter-name> <filter-class> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter </filter-class> <init-param> <param...
2016-10-06
最新回答 / 雪雨孤岛
还是得靠自己,laozi告诉你们正解。Employee中的Department成员变量,在使用ModelDriven之前,必须要Department department = new Department();因为没有实例化,所以无法对department.did赋值。解决方法:在Employee中添加构造方法public Employee( department = new Department();)就是在用之前实例化,就可以了。老师挖的坑。。
2016-09-29