我已經使用Spring + GWTP實現了我的GWT應用程序。使用Spring在GWTP ActionHandler中注入HttpServletRequest
我想訪問HttpServletRequest對象到我的ActionHandler類中。
ServerModule是Spring Configuration類(使用@Configuration註釋)。
現在的問題是如何注入當前的HttpServletRequest,ServletContext,ServletConfig在我的ActionHandler中使用Spring。
以下是ServerModule的定義:
@Configuration
@Import(DefaultModule.class)
public class ServerModule extends HandlerModule
{
@Bean
public UserVerficationActionHandler getUserVerificationActionActionHandler()
{
return new UserVerficationActionHandler();
}
}
在上面的例子我只是想注入的HttpServletRequest使用Spring的。
任何有關這方面的指導高度讚賞。
謝謝。
看來我必須使用HttpSessionListener和Filter來解決它。雖然如果我可以使用Spring DI注入請求對象,那將會很好。 – Bhavesh 2012-02-13 16:31:52