mybatis-plus:
  #定义别名包 将实体对象的包路径进行封装.
  type-aliases-package: com.jt.pojo
  #添加xml文件的依赖
  mapper-locations: classpath:/mybatis/mappers/*.xml
  #开启驼峰映射
  configuration:
    map-underscore-to-camel-case: true
ORM:对象关系映射,使用对象的方法操作数据库
原文:https://www.cnblogs.com/syrgdm/p/13600289.html