黑马程序员SpringBoot3和Vue3视频中代码运行时可能存在的异常问题

  1. 从黑马程序员SpringBoot3和Vue3视频中代码运行时可能存在Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.1.1:exec错误,
    在pom.xml文件中添加如下代码:
  
  
  
    org.apache.maven.plugins
    maven-compiler-plugin
    3.1
    
      17
      17
    
  
  
  

并进行如下图的修改,进入修改界面后,上面只勾选在后台运行,JRE选择自己安装的JDK17版本的路径。
在这里插入图片描述2. 出现java.lang.IllegalArgumentException: Invalid value type for attribute ‘factoryBeanObjectType‘: 错误,经网上查看是mybatis-spring的版本问题,更新到3.03即可成功运行。在pom.xml文件中添加如下代码:

   
      org.mybatis
      mybatis-spring
      3.0.3
    
  1. 出现Logging initialized using ‘class org.apache.ibatis.logging.stdout.StdOutImpl’ adapter.异常,百度说是因为mapper.xml中sql语句的问题,看了很长时间但并未没发现sql语句错误,之后将该句注释掉后可正常运行且并无其它异常显示。

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