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
Affects: 5.2.0.M3
When using the Kotlin-based Functional Bean Definition DSL I'm having a definition like this one:
val beans = beans { bean<CustomerService>() bean<CustomerHandler>() // 3 args resp. 1 arg bean(::router) bean(::securityWebFilterChain) // userDetailsService has no args // bean(::userDetailsService) DOESN'T COMPILE bean { userDetailsService() } }
For readability reasons it would be nice to also use a function reference when the bean function has no arguments.
The text was updated successfully, but these errors were encountered:
3f1882c
Thanks for reporting it and sorry for the lag.
Sorry, something went wrong.
sdeleuze
No branches or pull requests
Affects: 5.2.0.M3
When using the Kotlin-based Functional Bean Definition DSL I'm having a definition like this one:
For readability reasons it would be nice to also use a function reference when the bean function has no arguments.
The text was updated successfully, but these errors were encountered: