We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6e982 commit f9bb6e4Copy full SHA for f9bb6e4
springdoc-openapi-common/src/main/java/org/springdoc/core/MultipleOpenApiGroupsCondition.java
@@ -22,6 +22,8 @@
22
package org.springdoc.core;
23
24
25
+import java.util.Collection;
26
+
27
import org.springframework.boot.autoconfigure.condition.AnyNestedCondition;
28
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
29
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
@@ -55,4 +57,9 @@ static class OnGroupedOpenApiBean {}
55
57
@ConditionalOnProperty(name = GROUP_CONFIG_FIRST_PROPERTY)
56
58
static class OnGroupConfigProperty {}
59
60
+ /**
61
+ * The type On list grouped open api bean.
62
+ */
63
+ @ConditionalOnBean(value = GroupedOpenApi.class, parameterizedContainer = Collection.class)
64
+ static class OnListGroupedOpenApiBean {}
65
}
0 commit comments