質問

Does anybody know how to enable myDataBindListener (that implements DataBindListener) in grails app?

役に立ちましたか?

解決

Inside resources.groovy define it as a bean. This will register it with the spring application context and receive events.

beans {
  myDataBindListener(com.whatever.MyDataBindListener)
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top