I need to call public methods of the rubberStampService
from inside the RubberStampServiceImpl
class.
To reference the rubberStampService
from inside itself, can I make a self-referential bean declaration like this:
<beans:bean id="rubberStampService" class="com.rubberly.RubberStampServiceImpl">
<beans:property name="rubberStampService" ref="rubberStampService" />
</beans:bean>