I think i have to be more specific for a solid advice :)
I guess the thing I don't understnad is how to transit from singleton servlet to request scoped objects
but the provider class need inject of request scope object as well (eg httpservletrequest), ie:
@Singleton
public class Servlethandler ... {
@Inject
Provider<RequestScopeObj> obj
}
public class RSprovider {
@Inject
public RSprovider(HttpServletRequest req) {...}
}
As servlet handler is singleton, i don't understand how to request scope object would work.