I have the following file structure

/WEB-INF/spring/apllication-business.xml
/WEB-INF/spring/apllication-common.xml
/WEB-INF/spring/apllication-dao.xml

web.xml
---------
Code:
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/application*.xml</param-value>
    <description>
    </description>
</context-param>
It does work on Tomcat, WebLogic but doesn't on SAP WAS

Exception:
-------------
Code:
Caused by&#58; org.springframework.context.ApplicationContextException&#58; I/O error parsing XML document for application context &#91;Root WebApplicationContext&#93;; nested exception is java.io.FileNotFoundException&#58; ServletContext resource &#91;/WEB-INF/spring&#93; cannot be resolved to URL because it does not exist
Did anybody solve the same problem?