mybatis配置

    1. mybatis:
    2. type-aliases-package: com.imooc.pojo #所有POJO类所在包路径
    3. mapper-locations: classpathmapper/*.xml #mapper映射文件
    4. configuration:
    5. log-impl: org.apache.ibatis.loggin.stdout.StdOutImpl

    通用Mapper配置

    1. mapper:
    2. mappers: com.imooc.my.mapper.MyMapper
    3. not-empty: false # 在进行数据库操作的时候,判断表达式 username !=null,是否追加
    4. identity: MYSQL