<bean id="sqlSessionFactory"
class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mapperLocations">
<list>
<value>classpath*:/WEB-INF/lib/com/nextgate/mm/mappers/*.xml</value>
<value>classpath*:/WEB-INF/lib/org/activiti/db/mapping/entity/*.xml</value>
</list>
</property>
<property name="configLocation"
value="classpath:com/nextgate/mm/config/mybatis-config.xml" />
</bean>
the above seems to works along with the export-package. Not sure why I need
to use /WEB-INF/lib in the first two but not the 3rd one above. If I use
/WEB-INF/lib in the 3rd one it can't find it...
--
View this message in context:
http://karaf.922171.n3.nabble.com/Does-not-exist-in-file-system-tp4032974p4032990.html
Sent from the Karaf - User mailing list archive at Nabble.com.