I am using
Tomcat 7 with Eclipse Luna to run a Spring based web app which also uses Jackrabbit. In Spring's application-context.xml file, I have defined a Jackrabbit repository's reference with
repository.xml is in the same folder as application-context.xml.
Tomcat throws
java.io.FileNotFoundException: /Applications/eclipse/Eclipse.app/Contents/MacOS/classpath:repository.xml (No such file or directory)
It is as if "classpath:repository.xml" were interpreted as a directory path, and not as a Spring's resource
string.
<constructor-arg index="0" value="classpath:repository.xml"/>
Is this an issue with Eclipse ? Do I need to specify anything in its .ini ?
Or with Tomcat or with Spring ?
I also tried to deploy the .war in the standalone tomcat server, and take eclipse out of the equation.
I got the same:
java.io.FileNotFoundException: /mypathtoApache/apache-tomcat-6.0.41/bin/classpath:repository.xml (No such file or directory)
It is as if "classpath" were interpreted as part of the dirname, not as a resource string.
Any help ?