Annotation Type EnableIntegrationGraphController
@Target(TYPE) @Retention(RUNTIME) @Inherited @Import(org.springframework.integration.http.config.IntegrationGraphControllerRegistrar.class) public @interface EnableIntegrationGraphController
Enables the
IntegrationGraphController
if
org.springframework.web.servlet.DispatcherServlet
or
org.springframework.web.reactive.DispatcherHandler
is present in the classpath.- Since:
- 4.3
- Author:
- Artem Bilan
- See Also:
IntegrationGraphController
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description String[]
allowedOrigins
Specify allowed origin URLs for cross-origin request handling.String
path
Specify the Request Mapping path for theIntegrationGraphController
.String
value
Specify the Request Mapping path for theIntegrationGraphController
.
-
Element Details
-
value
Specify the Request Mapping path for theIntegrationGraphController
. Defaults to "/integration".- Returns:
- The Request Mapping path for the
IntegrationGraphController
- Default:
- "/integration"
-
path
Specify the Request Mapping path for theIntegrationGraphController
. Defaults to "/integration".- Returns:
- The Request Mapping path for the
IntegrationGraphController
- Default:
- "/integration"
-
allowedOrigins
String[] allowedOriginsSpecify allowed origin URLs for cross-origin request handling. Only allows GET operations.- Returns:
- the URLs.
- Since:
- 4.3.5
- Default:
- {}
-