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
Given the following configuration:
@Bean public CommonsExecWebServerFactoryBean authorizationServer() { return CommonsExecWebServerFactoryBean.builder() .mainClass(TestAuthorizationServerApplication.class.getName()) .classpath((classpath) -> classpath .entries(MavenClasspathEntry.springBootStarter("oauth2-authorization-server")) .recursive(TestAuthorizationServerApplication.class) ); }
The recursive() method within classpath() is not clear to me on what it does. Can we consider changing the name?
recursive()
classpath()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the following configuration:
The
recursive()
method withinclasspath()
is not clear to me on what it does. Can we consider changing the name?The text was updated successfully, but these errors were encountered: