vote up 2 vote down star

I'm using Spring's dependency injection but I'm running into difficulty loading a resource in my spring config file.

The resource is an XML file and its in a jar file on my classpath. I try to access it as follows;

<import resource="classpath:com/config/resources.xml" />

however I keep geting error;

Failed to import bean definitions from URL location [classpath:com/config/resources.xml]

The jar file is on the classpath of a Java project which is in turn used by my web app. Should I really be doing my spring configuration in the web project as opposed the java project or does that matter?

flag

3 Answers

vote up 5 vote down check

If it needs to be in the classpath of your webapp, then you should stick the JAR containing the config file into your WEB-INF/lib directory.

If you're using a webapp, then the common convention is use a ContextLoaderListener to ensure a WebApplicationContext is inserted into a standard place in the ServletContext:

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:/com/config/resources.xml</param-value>
</context-param>

Then use WebApplicationContextUtils to fish the application context out of the servlet context using:

WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
link|flag
vote up 0 vote down

I don't really recall why this matters, but try putting an asterisk () in front of the colon (:) classpath:/ If this doesn't work, try the asterisk after the colon (classpath:*), although I think it was before the colon.

link|flag
I think you are referring to this: static.springframework.org/spring/docs/… – matt b Nov 17 '08 at 19:11
vote up 0 vote down

I've only used the <import> directive in J2SE and it works without the classpath: prefix, simply as <import resource="config/resources.xml" />. But in J2EE if all your files are inside WEB-INF, it should be similar, just import resource="bla.xml" and it should find it, although in J2EE you don't need to do this because in web.xml you can define several files in the contextConfigLocation context parameter inside web.xml, just separate them with spaces or newlines.

link|flag

Your Answer

Get an OpenID
or

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