Like Spring, blueprint supports the prototype scope. But unlike Spring I can\'t see any documentation about how to use it.
In Spring you can ask the context to give you
If a bean is of scope prototype then a new instance of the bean is created each time the bean is injected somewhere. Therefore each client that gets a bean of scope prototype injected gets a new instance of the bean.