SpringTestSupport - should support spring xml files loaded from file system
---------------------------------------------------------------------------

                 Key: CAMEL-633
                 URL: https://issues.apache.org/activemq/browse/CAMEL-633
             Project: Apache Camel
          Issue Type: Improvement
          Components: camel-spring
    Affects Versions: 1.4.0
            Reporter: Claus Ibsen
             Fix For: 1.5.0


Now you must use ClassPath based xml files as Camel expects a 
ClassPathXmlApplicationContext.

The code below is not possible, but desired for unit testing camel projects 
where spring configuration resides in WEB-INF and not on the classpath etc.
{code}
public class MyRouteTest extends SpringTestSupport {

    protected ClassPathXmlApplicationContext createApplicationContext() {
        return new 
FileSystemXmlApplicationContext("src/main/webapp/WEB-INF/helloworld.xml");
    }
}
{code}

There must be a common spring interface we can return in 
createApplicationContext instead of the classpath based.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to