You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@karaf.apache.org by asookazian2 <as...@gmail.com> on 2014/05/01 00:55:58 UTC

Re: Does not exist in file system

As a workaround solution to this classpath resolution issue, I copied the xml
files and the corresponding packages (folder structures) into
src/main/resources and referenced them as follows:

<bean id="sqlSessionFactory"
class="org.mybatis.spring.SqlSessionFactoryBean">
		
		<property name="dataSource" ref="dataSource" />

                <property name="mapperLocations">
                     <list>       
                     
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/ExternalAppInfo.xml</value>
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/GlobalResource.xml</value>
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/ProcessDefinition.xml</value>
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/ProcessInstanceExt.xml</value>
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/ProcessInstanceExtProp.xml</value>
                     	
<value>WEB-INF/classes/com/nextgate/mm/mappers/UserResource.xml</value>
</list>
</property>
</bean>



--
View this message in context: http://karaf.922171.n3.nabble.com/Does-not-exist-in-file-system-tp4032974p4033013.html
Sent from the Karaf - User mailing list archive at Nabble.com.