INT-3991: Add IntegrationGraphController
JIRA: https://jira.spring.io/browse/INT-3991 * Add `IntegrationGraphController` `@RestController` over `IntegrationGraphServer` bean * Add `@EnableIntegrationGraphController` and `<int-http:graph-controller>` to register `IntegrationGraphController` if the `DispatcherServlet` is in classpath. * Also register the `IntegrationGraphServer` bean from the same place, if that isn't presented in the application context yet. * Allow to configure the "root" `path` for the `IntegrationGraphController` as a placeholder value via `spring.integration.graph.controller.request.mapping.path` property * Add tests for both `@EnableIntegrationGraphController` and `<int-http:graph-controller>` cases based on the `MockMvc`
This commit is contained in:
committed by
Gary Russell
parent
b84747b090
commit
8df487c96f
@@ -0,0 +1,9 @@
|
||||
log4j.rootCategory=WARN, stdout
|
||||
|
||||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss.SSS} %-5p [%t][%c] %m%n
|
||||
|
||||
#log4j.category.org.springframework=DEBUG
|
||||
log4j.category.org.springframework.integration=WARN
|
||||
log4j.category.org.springframework.integration.http=WARN
|
||||
Reference in New Issue
Block a user