NoClassDefFoundError PropertyPlaceholderAutoConfiguration
See original GitHub issueversion:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Dalston.SR4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
running ConfigServer success,when i try to make a test for server. http://server_ip:port/{name}/{profile}/{label} throw
java.lang.NoClassDefFoundError: org/springframework/boot/autoconfigure/context/PropertyPlaceholderAutoConfiguration
change older verion Brixton.RELEASE or Dalston.SR1 , The test pass!
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Cannot find class org.springframework.boot.autoconfigure ...
org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration presents in spring-boot-autoconfigure jar.
Read more >How to solve java.lang.NoClassDefFoundError - Java67
PropertyPlaceholderAutoConfiguration #propertySourcesPlaceholderConfigurer due to internal class not found. This can happen if you are @ComponentScanning a ...
Read more >java.lang.ClassNotFoundException: org.hl7.fhir.utilities.npm ...
I'm having trouble understanding the missing IPackageCacheManager dependency (assuming that's the root cause), because it's not referenced ...
Read more >Notable Issues - Chaos Engine
If a Bean Instantiation attempts to load a class that is not in the classpath, then a IllegalStateException is thrown, wrapping a lower...
Read more >ch/qos/logback/classic/spi/ThrowableProxy异常解决办法_java ...
NoClassDefFoundError : ch/qos/logback/classic/spi/ThrowableProxy异常 ... PropertyPlaceholderAutoConfiguration]; nested exception is java.io.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks. The Dalston release train was designed to work with Spring Boot 1.5.x. You need to change the Boot version.
It’s working now. Thank u so much!