Annotation Type EnableIntegrationGraphController
@Target(TYPE) @Retention(RUNTIME) @Inherited @Import(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
- See Also:
IntegrationGraphController
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String[]
allowedOrigins
Specify allowed origin URLs for cross-origin request handling.java.lang.String
path
Specify the Request Mapping path for theIntegrationGraphController
.java.lang.String
value
Specify the Request Mapping path for theIntegrationGraphController
.
-
Element Details
-
value
@AliasFor("path") java.lang.String valueSpecify the Request Mapping path for theIntegrationGraphController
. Defaults to "/integration".- Returns:
- The Request Mapping path for the
IntegrationGraphController
- Default:
- "/integration"
-
path
@AliasFor("value") java.lang.String pathSpecify the Request Mapping path for theIntegrationGraphController
. Defaults to "/integration".- Returns:
- The Request Mapping path for the
IntegrationGraphController
- Default:
- "/integration"
-
allowedOrigins
java.lang.String[] allowedOriginsSpecify allowed origin URLs for cross-origin request handling. Only allows GET operations.- Returns:
- the URLs.
- Since:
- 4.3.5
- Default:
- {}
-