配置内容:

    1. mybatis-plus:
    2. mapper-locations: classpath*:mapper/*.xml #把xml文件放在com.XX.mapper.*中可能会出现找到的问题,这里把他放在resource下的mapper中
    3. basePackage: com.example.demo.dao
    4. typeAliasesPackage: com.example.demo.entity #这里是实体类的位置
    5. map-underscore-to-camel-case: true
    6. cache-enabled: false
    7. configuration:
    8. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #显示日志