[Grails] 关于GORM的操作问题

y_yqing 2007-08-01
这是多对多的关系,需要在Web.xml中加入GrailsOpenSessionInViewFilter
zengsun 2007-08-02
y_yqing 写道
这是多对多的关系,需要在Web.xml中加入GrailsOpenSessionInViewFilter

可否给个例子
y_yqing 2007-09-15
zengsun 写道
y_yqing 写道
这是多对多的关系,需要在Web.xml中加入GrailsOpenSessionInViewFilter

可否给个例子


在web.template.xml中加入:
<filter>
<filter-name>openSessionFilter</filter-name>
<filter-class>
  org.codehaus.groovy.grails.orm.hibernate.support.GrailsOpenSessionInViewFilter
</filter-class>
<init-param>
  <param-name>singleSession</param-name>
  <param-value>true</param-value>
</init-param>
  </filter>
<filter-mapping>
<filter-name>openSessionFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
即可(此filter最好是第一个filter)
Global site tag (gtag.js) - Google Analytics