vote up 0 vote down star

Hi all,

I have a bunch of spring config files, all of which live under the META-INF directory in various subpackages. I have been using import like the following...

  <import resource="../database/schema.xml"/>

So a relative path from the source file. This works fine when I am working with a local build outside of a jar file. But when I package everything up in a jar then I get an error that it cannot resolve the URL resource. If I change the above to an absolute path (with classpath:) then it works fine.

Is there any way to use relative paths with ".." in when the configs are packaged in a jar or am I restricted to descending relative paths and absolute paths only?

Thanks.

flag

58% accept rate

1 Answer

vote up 1 vote down
<import resource="classpath:database/schema.xml"/>
link|flag
It would need to be <import resource="classpath:../database/schema.xml"/> but this doesn't work. – Mike Q Oct 21 at 19:59
Hm... You have to have it in META-INF? – Trick Oct 22 at 7:34
Not necessarily but I need it packaged in the jar so users of the jar pick up the config with it. – Mike Q Oct 22 at 10:22
My structure for jars looks like so: src/main/java/ - code src/main/resources/ - configurations files (including spring) – Trick Oct 22 at 13:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.