亲测解决myabtis中驼峰命报错:Property ‘configuration‘ and ‘configLocation‘ can not specified with together的解决办法

报错是因为驼峰命名属于mybatis配置内容,如果你指定了mybatis的配置文件,他就认为你应该在配置文件中设置,而不是两边都配置驼峰。

 

application.yml文件指定mybatis全局配置文件,

mybatis-config.xml文件中配置开启驼峰配置

 

  • application.yml文件中mybatis的配置

  • mybatis:
      typeAliasesPackage: com.example.mybaitsxml.dao.entity
      mapperLocations: classpath:mapper/*.xml
      configLocation: classpath:/mybatis-config.xml

    mybatis-config.xml配置





    
    
    
    

 

你可能感兴趣的:(java,mybatis,数据库异常处理,java,mybatis,spring,boot)