I\'m developing an app with a Flex-based front end and a Spring/Hibernate back-end.
To get Facebook integration working in the way I\'ve got it currently, I need to
Better way is to autowire with a constructor:
private final HttpServletRequest httpServletRequest; public ClassConstructor(HttpServletRequest httpServletRequest){ this.httpServletRequest = httpServletRequest; }