basePackage property is a package name, so this:
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="org.lmb97.data.*Mapper" />
</bean>
should be:
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="org.lmb97.data" />
</bean>
Hola, gracias!
Yes that was a problem, but the one that was giving problems was that @Autowire is used in Spring managed ones, for Stripes ones, I have to use @SpringBean. Doing both solved the problems.
The related StackOverflow question is this:
I didn't have any real mybatis problems still :D
Cheers