I'd like to import a xml resource from users home directory:

<import resource="${user.home}/beans.xml" />

But this one does not work (placeholder is not replaced).

The PropertyPlaceholderConfigurer does not give me a way to do that?! Any ideas?

link|improve this question

50% accept rate
How do you specify list of context files to be loaded? Maybe it could be done there, would work with web.xml and env variables for sure. – mrembisz Dec 27 '11 at 8:54
feedback

1 Answer

You will have to specify the absolute path for the same.

Resource res1 = ctx.getResource("file:///c:/test.txt");
link|improve this answer
the solution must be platform independent. – user470370 Dec 27 '11 at 9:24
feedback

Your Answer

 
or
required, but never shown

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