<@U25U0KPFT> No, not at all. The rest resources wi...
# tornadofx
e
@carlw No, not at all. The rest resources will ask for a new service on each request, so if the bean I inject is Stateless, I will get a bean from the session pool. In singleton beans I would use the instance.get pattern and ask for a new bean for each method invocation, so I would always get the right scope. I didn't really think about this before you said it though, but I don't see any issues 🙂