I have a class say UserService which implements Service and annotated with Service StereoType, I'm using Spring AOP and want to do temporary workaround for this(I know this can be done in better way)
@Service
public class UserService implements Service{
@Autowired
private Service self;
}
I tried this but got BeanNotFoundException, did I missed anything?
I know I have to go with AspectJ with @Configurable but just looking for little temporary workaround