Annotation Interface ImportHttpServices


@Target(TYPE) @Retention(RUNTIME) @Documented @Repeatable(Container.class) @Import(org.springframework.web.service.registry.AnnotationHttpServiceRegistrar.class) public @interface ImportHttpServices
Annotation to declare HTTP Service types (interfaces with @HttpExchange methods) for which to create client proxies, and have those proxies registered as beans.

This is a repeatable annotation that is expected on @Configuration classes. Each annotation is associated with an HttpServiceGroup identified by name through the group() attribute.

The HTTP Services for each group can be listed via types(), or detected via basePackageClasses() or basePackages().

An application can autowire HTTP Service proxy beans, or autowire the HttpServiceProxyRegistry from which to obtain proxies.

Since:
7.0
Author:
Olga Maciaszek-Sharma, Rossen Stoyanchev
See Also: