An internal error occurred while trying to authenticate the user.

最近实际开发中遇到了一个问题:

An internal error occurred while trying to authenticate the user.

翻译一下:尝试对用户进行身份验证时发生内部错误。

分析一下:遇到这个问题时,我的第一反应就是:会不会是注解漏了?后面仔细检查了一下发现并不是。后面自己又思考了一下突然想到会不会是配置信息有问题?果不其然少写了下面这个配置:

#开启Mybatis下划线命名转驼峰命名
mybatis:
  configuration:
    map-underscore-to-camel-case: true

你可能感兴趣的:(java,mybatis,spring,boot,java)