idea中Mapper接口无法自动注入,报"Invalid bound statement (not found) "异常

首先声明Mapper接口时,could not autowire,是因为idea的拼写检查,并不影响执行
Setting->Inspections->Spring->springCore->Code->Autowiring for Bean Class设置为nohighliting ,only fixed.即可
接下来的说”Invalid bound statement “异常,不能找到Mapper接口的代理类
1.检查了我的配置文件,没有问题
2.我看网上很多人说因为Idea不能编译resources目录下的XML文件,然后target下的classes目录下不会生成XML文件,需要在maven项目的pom文件build下加入以下配置

<build>     
    <resources>  
        <resource>  
            <directory>src/main/javadirectory>  
            <includes>  
                <include>**/*.propertiesinclude>  
                <include>**/*.xmlinclude>  
            includes>  
            <filtering>falsefiltering>  
        resource>  
        <resource>  
            <directory>src/main/resourcesdirectory>  
            <includes>  
                <include>**/*.propertiesinclude>  
                <include>**/*.xmlinclude>  
            includes>  
            <filtering>falsefiltering>  
        resource>  
    resources>  
build>  

可是我的target目下有XML等配置文件,所以不是这个问题,我使用的是IDEA 2017.2.6版本,我想idea应该新点的版本解决了这个问题.
我们知道Mybaties中,Mapper接口和XML配置文件需要在一个目录下。
3、最后我发现我的问题是:
idea中Mapper接口无法自动注入,报
我的resources下的文件建立错误了。
eclipse的resources下可以建立pacakge,但是Idea下不能,只能建立Directory,即目录.
所以我之前新建com.ray.mybbs.mapper.test,这显然是一个文件夹的名称。
正确的建立方式是com/ray/mybs/mapper/test,这样建立多级目录
被叽叽蠢哭
-.-…….
至此问题解决。

你可能感兴趣的:(idea)