在service中注入实体类失败,原因是没有加载mapper.xml文件,
修改pom文件,加入:

<resources>
   <resource>
        <directory>src/main/java</directory>
        <includes>
            <include>**/*.properties</include>
            <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
    </resource>
</resources>

即可编译配置文件。

但是这样带来的另一个问题是,mybatis-generator自动生成代码器找不到自己的properties文件,只能注释掉上面这段,然后再自动生成dao。

去掉spring的mapper注入错误:
修改eidtor->Inspections -> Spring -> 将error改为warning即可。