Interface AbstractHttpServiceRegistrar.GroupRegistry.GroupSpec
- Enclosing interface:
AbstractHttpServiceRegistrar.GroupRegistry
public static interface AbstractHttpServiceRegistrar.GroupRegistry.GroupSpec
Spec to list or scan for HTTP Service types.
- Since:
- 7.0
- Author:
- Rossen Stoyanchev, Phillip Webb, Olga Maciaszek-Sharma, Stephane Nicoll
-
Method Summary
Modifier and TypeMethodDescriptiondetectInBasePackages
(Class<?>... packageClasses) Detect HTTP Service types in the given packages, looking for interfaces with a type and/or methodHttpExchange
annotation.detectInBasePackages
(String... packageNames) Variant ofdetectInBasePackages(Class[])
with a String package name.List HTTP Service types to create proxies for.
-
Method Details
-
register
List HTTP Service types to create proxies for. -
detectInBasePackages
AbstractHttpServiceRegistrar.GroupRegistry.GroupSpec detectInBasePackages(Class<?>... packageClasses) Detect HTTP Service types in the given packages, looking for interfaces with a type and/or methodHttpExchange
annotation. -
detectInBasePackages
Variant ofdetectInBasePackages(Class[])
with a String package name.
-