做項目,sql語句比較復雜,所以使用了xml自定義SQL進行查詢,奈何一直報錯
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.xx.springboot.mapper.UserMapper.Select

在application.xml 配置
mybatis.mapper-locations=classpath*:/com/xx/springboot/mapper/*.xml
pom.xml 配置
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<resources>
<!--引入mapper對應的xml文件-->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>