mybatis和spring整合扫描不到mapper?

异常信息

org.springframework.beans.factory.BeanDefinitionStoreException:Failed to read candidate component class: file [E:\workspace\spring_mybatis\bin\cn\knight\ssm\mapper\UserMapper.class]; nested exception is java.lang.IllegalArgumentException

首先你得保证你的配置文件没有问题。

spring配置applicationContext.xml    


   
       
       
       
   

然后最大的坑是jdk1.8跟spring3.2及以下版本不兼容,导致扫描不出mapper。换成jdk1.7(我没试)或者换成spring4.x版本即可解决

你可能感兴趣的:(spring)