Where is RelaxedPropertyResolver class in the version Spring Boot version 2.0.0.M1
See original GitHub issueHi guys!
I updated a project I’m working on from spring-boot 1.5.3.RELEASE (spring cloud Dalston.RELEASE) to 2.0.0.M1 (Finchley.BUILD-SNAPSHOT).
After adapting some repository changes like Entity findOne(id) to Optional<Entity> findById(id), I have no compilation errors. However, when I execute the project, I get java.lang.ClassNotFoundException: org.springframework.boot.bind.RelaxedPropertyResolver
Because of the missing class, I have problems to instantiate some beans from Eureka, Swagger, Config Server, etc.
Where is org.springframework.boot.bind.RelaxedPropertyResolver class in the version 2.0.0.M1?
Thanks!
Issue Analytics
- State:
- Created 6 years ago
- Reactions:4
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Spring Boot 2.0.0.M1: Where is the package org ...
RelaxedPropertyResolver is used e.g. in org.springframework.cloud.netflix.eureka.EurekaClientAutoConfiguration both in 1.3.0.RELEASE and in the ...
Read more >Spring Boot Reference Guide
This section provides a brief overview of Spring Boot reference documentation. Think of it as map for the rest of the document. You...
Read more >[Solved]-Migrated Spring boot 1.5 to 2.0, unable to start app ...
Support for Spring Boot 2.0.x is coming in Camel version 2.22 which is planned for ... using Apache Camel requires Spring Boot >=1.4.0.RELEASE...
Read more >Springboot2.1.1版本升级到2.3.10版本报错合集及解决办法
一、springboot和springcloud版本对应 ; Greenwich.M1, Spring Boot >=2.1.0.M3 and <2.1.0.RELEASE ; Finchley.BUILD-SNAPSHOT ...
Read more >A Webapp Makeover with Spring 4 and Spring Boot - RSSing ...
Upgrading to Spring 4 was easy, I changed the version property to 4.0.0. ... To configure Jersey without web.xml, I created a JerseyConfig...
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

No, sorry. You’ll have to update your code to be compatible with Boot 2.0. If you need some help with that, please ask on Stack Overflow explaining how you are currently using PropertySourceUtils.
Hi @wilkinsona, any chance of the
org.springframework.boot.bindpackage to come back to Spring Boot 2 FINAL version? One of its classes [org.springframework.boot.bind.PropertySourceUtils] is being used in a project I’m currently working on.