Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread viggo
woow, great news Matt!! Congratulations :) Matt Raible-3 wrote: > > On 2/20/07, viggo <[EMAIL PROTECTED]> wrote: >> >> Thanks Matt, that solved everything :) >> >> When will the final m4 be finalized? > > As soon as we finish AMP and fix all the remaining issues. I just > started working at a

Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread Matt Raible
On 2/20/07, viggo <[EMAIL PROTECTED]> wrote: Thanks Matt, that solved everything :) When will the final m4 be finalized? As soon as we finish AMP and fix all the remaining issues. I just started working at a new job this week, so it might take a few weeks. :-( Matt Matt Raible-3 wrote: >

Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread viggo
Thanks Matt, that solved everything :) When will the final m4 be finalized? Matt Raible-3 wrote: > > On 2/20/07, viggo <[EMAIL PROTECTED]> wrote: >> >> ok, thanks. >> >> But the, two questions: >> 1. What about my PersonDaoTest.java? Why is it complaining about the >> missing >> personManager

Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread Matt Raible
On 2/20/07, viggo <[EMAIL PROTECTED]> wrote: ok, thanks. But the, two questions: 1. What about my PersonDaoTest.java? Why is it complaining about the missing personManager bean? Because it should probably be org.appfuse.service.impl.GenericManagerImpl instead of com.xpoints.service.impl.Gener

Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread viggo
ok, thanks. But the, two questions: 1. What about my PersonDaoTest.java? Why is it complaining about the missing personManager bean? 2. What is special about "classpath:**/applicationContext*.xml", in the PersonDaoTest's getConfigLocations method? Matt Raible-3 wrote: > > When packaging a cont

Re: [appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread Matt Raible
When packaging a context file in a JAR, the best way to refer to it is: classpath*:/filenamewithnowildcards.xml So "classpath*:/applicationContext.xml" should work. Matt On 2/20/07, viggo <[EMAIL PROTECTED]> wrote: I just wondered what the syntax is when referering to files on the classpath

[appfuse-user] Syntax when referencing resources on the classpath

2007-02-20 Thread viggo
I just wondered what the syntax is when referering to files on the classpath the way you do in web.xml and PersonDaoTest.java: My web.xml: contextConfigLocation classpath*:/applicationContext-resources.xml classpath*:/applicationContext-dao.xml