2

我是spring boot的新手,我想让我的spring boot应用程序与mybatis和mysql数据库集成。我使用生成器生成实体、映射器接口和映射器 xml 文件。而且我还使用@MapperScan 注释告诉应用程序如何找到映射器,我的 application.yml 如下所示:

spring:
  datasource:
    username: root
    password:
    url: jdbc:mysql://localhost:3306/bidding
    driver-class-name: com.mysql.jdbc.Driver

mybatis:
  mapperLocations: classpath:mapping/*.xml

但是当我使用命令“mvn spring-boot:run”运行应用程序时,它总是给我错误消息“无效绑定语句(未找到)”。

我的代码中有什么遗漏吗?

4

1 回答 1

3

mybatis接口和xml的映射有问题。

  1. 检查接口和xml的包,它们应该是同一个包
  2. 检查xml中的命名空间和xml的包,它们应该是相同的路径
于 2016-02-25T08:34:12.690 回答