我已经使用 Spring + GWTP 实现了我的 GWT 应用程序。
我想将 HttpServletRequest 对象访问到我的 ActionHandler 类中。
ServerModule 是 Spring Configuration 类(使用 @Configuration 注解)。
现在的问题是如何使用 Spring 在我的 ActionHandler 中注入当前的 HttpServletRequest、ServletContext、ServletConfig。
下面是 ServerModule 的定义:
@Configuration
@Import(DefaultModule.class)
public class ServerModule extends HandlerModule
{
@Bean
public UserVerficationActionHandler getUserVerificationActionActionHandler()
{
return new UserVerficationActionHandler();
}
}
在上面的示例中,我只想使用 Spring 注入 HttpServletRequest。
对此高度赞赏的任何指导。
谢谢。