We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When retrieving a service with a class name that ends in "Async", lookup should fall back to try to find the service without this suffix.
MyServiceAsync myServiceAsync = context.getBean(MyServiceAsync.class);
should try to look up MyService.class if MyServiceAsync.class not found
MyService.class
MyServiceAsync.class
The text was updated successfully, but these errors were encountered:
#1 If reactive bean not found, try to look up non-reactive version.
ed74f70
#1 Also look for non-reactive version when searching for bean usages.
3cc77e8
No branches or pull requests
When retrieving a service with a class name that ends in "Async", lookup should fall back to try to find the service without this suffix.
should try to look up
MyService.class
ifMyServiceAsync.class
not foundThe text was updated successfully, but these errors were encountered: