美文网首页
SpringBoot 2.0提示报错使用指南

SpringBoot 2.0提示报错使用指南

作者: 如风_周 | 来源:发表于2018-05-29 11:22 被阅读59次

    1 mybatis提示报错

    Description:
    A component required a bean of type 'com.example.demo.dao.UserInfoMapper' that could not be found.
    Action:
    Consider defining a bean of type 'com.example.demo.dao.UserInfoMapper' in your configuration.
    

    解决方法:
    需要在调用的mybatis里加入 注解 @Mapper 相关连接

    2 请求
    请求返回json格式,需要加上@RequestBody,否则会报错
    3 windows- mysql数据库连接
    mysql can't get hostname for your address
    解决方法: 在本地服务管理mySql更改为本地服务(默认是网络服务)
    4 mysql
    Public Key Retrieval is not allowed
    解决办法:
    需要在连接地址后加上 allowPublicKeyRetrieval=true 相关连接
    5 @AutoWired
    Could not autowire. No beans 'here name' type found
    解决办法:
    实例化并继承接口

    TIM图片20180602212635.png

    相关文章

      网友评论

          本文标题:SpringBoot 2.0提示报错使用指南

          本文链接:https://www.haomeiwen.com/subject/eybojftx.html