Java教程

spring boot 运行 报 java.lang.IllegalStateException: Error processing condition on org.springframework.

本文主要是介绍spring boot 运行 报 java.lang.IllegalStateException: Error processing condition on org.springframework.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

新建了一个spring boot 的项目 ,然后 引用了好多包 ,刚新建的时候是没有问题的, 引了包以后 运行 报

java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.restTemplateBuilderConfigurer

一个一个试 ,把 dependency 注释掉 ,发现是 这个 引用的问题, 注释掉就 可以 运行 了

        <!-- https://mvnrepository.com/artifact/org.springframework/org.springframework.orm -->
                <dependency>
                    <groupId>org.springframework</groupId>
                    <artifactId>org.springframework.orm</artifactId>
                    <version>3.2.2.RELEASE</version>
                </dependency>

下会出现类似的错误 一定要 检查 pom.xml 文件

这篇关于spring boot 运行 报 java.lang.IllegalStateException: Error processing condition on org.springframework.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!