You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2008/06/24 15:41:00 UTC

[jira] Commented: (CAMEL-633) SpringTestSupport - should support spring xml files loaded from file system

    [ https://issues.apache.org/activemq/browse/CAMEL-633?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43684#action_43684 ] 

Claus Ibsen commented on CAMEL-633:
-----------------------------------

You can do
{code}
    protected ClassPathXmlApplicationContext createApplicationContext() {
        ApplicationContext ctx = new FileSystemXmlApplicationContext(
            "src/main/webapp/WEB-INF/helloworld.xml");
        return new ClassPathXmlApplicationContext(ctx);
    }
{code}

Lets see in Camel 1.5 if we can just let it accept an ApplicationContext 

> 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.