I'm trying to improve the structure of some code I wrote. I want to override a method of a service, but need another parameter/object for the new functionality. In plain Java, I would solve this by making the needed object an attribute of the class and initialized in the constructor. But because this is a bean, the constructor has no arguments.I'm trying to improve the structure of some cod