public final class HttpContextUtils extends Object
BeanFactory
.Modifier and Type | Field and Description |
---|---|
static String |
GRAPH_CONTROLLER_BEAN_NAME
Represents the bean name for the default
IntegrationGraphController . |
static String |
GRAPH_CONTROLLER_DEFAULT_PATH
Represents the default request mapping path for the
IntegrationGraphController . |
static String |
GRAPH_CONTROLLER_PATH_PROPERTY
Represents the environment property for the
IntegrationGraphController request mapping path. |
static String |
HANDLER_MAPPING_BEAN_NAME
The name for the infrastructure
IntegrationRequestMappingHandlerMapping bean. |
static boolean |
WEB_FLUX_PRESENT
A
boolean flag to indicate if the
org.springframework.web.reactive.DispatcherHandler is present in the
CLASSPATH to allow the registration of Integration server reactive components,
e.g. |
static boolean |
WEB_MVC_PRESENT
A
boolean flag to indicate if the
org.springframework.web.servlet.DispatcherServlet is present in the
CLASSPATH to allow the registration of Integration server components,
e.g. |
Modifier and Type | Method and Description |
---|---|
static RequestMapping |
convertRequestMappingToAnnotation(RequestMapping requestMapping)
Converts a provided
RequestMapping
to the Spring Web RequestMapping annotation. |
public static final boolean WEB_MVC_PRESENT
boolean
flag to indicate if the
org.springframework.web.servlet.DispatcherServlet
is present in the
CLASSPATH to allow the registration of Integration server components,
e.g. IntegrationGraphController
.public static final boolean WEB_FLUX_PRESENT
boolean
flag to indicate if the
org.springframework.web.reactive.DispatcherHandler
is present in the
CLASSPATH to allow the registration of Integration server reactive components,
e.g. IntegrationGraphController
.public static final String HANDLER_MAPPING_BEAN_NAME
IntegrationRequestMappingHandlerMapping
bean.public static final String GRAPH_CONTROLLER_PATH_PROPERTY
IntegrationGraphController
request mapping path.public static final String GRAPH_CONTROLLER_DEFAULT_PATH
IntegrationGraphController
.public static final String GRAPH_CONTROLLER_BEAN_NAME
IntegrationGraphController
.public static RequestMapping convertRequestMappingToAnnotation(RequestMapping requestMapping)
RequestMapping
to the Spring Web RequestMapping
annotation.requestMapping
- the RequestMapping
to convert.RequestMapping
annotation.