We have a project that includes Spring & Camel. An integration test (FooIT.java) is annotated for running with Spring and uses a camel route. The problem is that the test creates a database record (which it can read back) but the camel processor that we're written does not see it.
The route includes transacted() in each from(). We also have an @Bean that returns a default transaction manager wired with the Spring-injected manager used. Is there anything obvious that we're missing? Thanks, James