org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.hujin.springboo

2023-05-16

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.hujin.springboottest18logback.dao.StudentMapper.selectStudentCount
    at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:232) ~[mybatis-3.5.0.jar:3.5.0]
    at org.apache.ibatis.binding.MapperMethod.<init>(MapperMethod.java:50) ~[mybatis-3.5.0.jar:3.5.0]

是扫描不到mapper文件,在pom.xml中手动指定资源文件夹,

    <!--手动指定文件夹为resources-->
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>

 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.hujin.springboo 的相关文章

随机推荐