SSM框架运行报错:ERROR [RMI TCP Connection(3)-127.0.0.1] - Context initialization failed

SSM框架运行启动报错:
SSM框架运行报错:ERROR [RMI TCP Connection(3)-127.0.0.1] - Context initialization failed_第1张图片

  • 当我从输入框提交时,报如下错误:
    SSM框架运行报错:ERROR [RMI TCP Connection(3)-127.0.0.1] - Context initialization failed_第2张图片
  • The server encountered an unexpected condition that prevented it from fulfilling the request.
    SSM框架运行报错:ERROR [RMI TCP Connection(3)-127.0.0.1] - Context initialization failed_第3张图片

解决方案

首先查看pom.xml中是否有如下内容,如果有就是版本冲突问题,更换对应的版本即可。
如果没有,在pom.xml配置文件中添加如下内容

<!-- jackson-core -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.9.4</version>
    </dependency>
    <!--jackson-databind-->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.4</version>
    </dependency>
    <!--jackson-annotations-->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.9.4</version>
    </dependency>

你知道的越多,你不知道的越多。
有道无术,术尚可求,有术无道,止于术。
如有其它问题,欢迎大家留言,我们一起讨论,一起学习,一起进步

你可能感兴趣的:(#,SSM框架之Spring,#,SSM框架之MyBatis,#,SSM框架之Spring,MVC)