springBoot 整合 mybatis

yangliumbox發表於2020-10-16

springBoot 整合 mybatis

#springBoot 整合第一個 mybatis 工程
1. 新建了一個普通的maven 工程
2. 使用idea 的 easycode 自動生成了 controller,entity,service 和 dao 層的程式碼
3. 配置簡單pom ,不依賴會報錯

  java.lang.annotation.AnnotationFormatError: Invalid default: public abstract java.lang.Class tk.mybatis.spring.annotation.MapperScan.factoryBean()
依賴如下:
   <dependency>
       <groupId>org.mybatis.spring.boot</groupId>
       <artifactId>mybatis-spring-boot-starter</artifactId>  
       <version>2.1.0</version>
   </dependency>
    <dependency>
       <groupId>com.oracle</groupId>
       <artifactId>ojdbc6</artifactId>
       <version>11.2.0.4</version>
   </dependency>
4.  配置簡單的yml,不配置會報找不到 

mybatis:
mapper-locations: classpath:mapper/*.xml

相關文章