0
是否可以將Session Listener(HttpSessionListener的實現)註冊爲Spring Bean? 我的工作實現增加聽衆BootStrap.groovy中Grails - 將SessionListener註冊爲Spring Bean
def init = { servletContext ->
servletContext.addListener(userLoginSessionListener)
}
在servlet上下文但這會導致我的集成測試失敗,一個UnsupportedOperationException(將爲此創造另一個問題)
現在,我有以下幾點in resources.groovy
userLoginSessionListener(UserLoginSessionListener)
但現在我的sessionCreated和sessionDestroyed方法不再被觸發。