Hi,
My custom spring config file is not working as specified in ra.xml(below):
<?xml version="1.0" encoding="UTF-8"?>
<connector xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd"
version="1.5">
<vendor-name>Spring Framework</vendor-name>
<eis-type>Spring Connector</eis-type>
<resourceadapter-version>1.0</resourceadapter-version>
<resourceadapter>
<resourceadapter-class>org.springframework.jca.context.SpringContex tResourceAdapter</resourceadapter-class>
<config-property>
<config-property-name>ContextConfigLocation</config-property-name>
<config-property-type>java.lang.String</config-property-type>
<config-property-value>META-INF/spring-config.xml</config-property-value>
</config-property>
</resourceadapter>
</connector>
I am getting a FileNotFoundException for META-INF/applicationContext.xml file(why it is giving the exception for applicationContext.xml)
I am using Spring 3.1 and Websphere 7
Can anyone tell me the solution or how to use the custom spring config file other than applicationContext.xml?


Reply With Quote