How can I access request in Play Guice Module?
问题 I am writing an application which handles multiple systems. The user can choose the system which he wants to work with and I store that system ID in session (client session) Now I have Service classes, lets say CustomerService. class CustomerService(val systemID: String) { // Implementation } I want to use Guice to inject the Customer instance to the Controllers. But I want to instantiate the CustomerService with SystemID which is stored in the session. How can I access request.session in