springboot 整合mybatis访问时遇到的问题

1、把mapper.xml文件放到src.main.java的包下时

    1)、pom文件添加资源      


   
      src/main/resources
   
   
      src/main/java
      
         **/*.xml
      
   

2)、yml配置文件里添加(注意"/")

   mybatis:
     type-aliases-package: com.itmuch.cloud.microprovideruser.modual.entity
     mapper-locations: com/itmuch/cloud/microprovideruser/modual/mapper/mappering/*.xml

3)、mysql 账号和密码参数

spring:
  application:
    name: micro-provider-user
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    username: root   /data-usernaem: 
    password: mysql  /data-password: 

你可能感兴趣的:(springboot 整合mybatis访问时遇到的问题)