码迷,mamicode.com
首页 > 移动开发 > 详细

Invalid bound statement (not found): com.ruoyi.system.mapper.SysStudentMapper.selectSysStudentList

时间:2020-06-09 12:48:18      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:resources   rect   select   java   app   als   main   cts   clu   

解决办法:在mapper工程下的pom文件中加入下面的内容,让mapper映射文件加载到target的classes中去

 

<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->

      <build>

            <resources>

            <resource>

                <directory>src/main/java</directory>

                <includes>

                    <include>**/*.properties</include>

                    <include>**/*.xml</include>

                </includes>

                <filtering>false</filtering>

            </resource>

        </resources>

      </build>

 

 

Invalid bound statement (not found): com.ruoyi.system.mapper.SysStudentMapper.selectSysStudentList

标签:resources   rect   select   java   app   als   main   cts   clu   

原文地址:https://www.cnblogs.com/liqinzhen/p/13071690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!