You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works. However, changing request type from Map<String, ?> to Map<String, String> causes Feign to fail with:
feign.codec.EncodeException Unable to make field transient java.util.HashMap$Node[] java.util.HashMap.table accessible: module java.base does not "opens java.util" to unnamed module @531be3c5
During my investigation, I learned about Feign's close relationship with Map<String, ?> via feign.codec.Encoder#MAP_STRING_WILDCARD, but even if this is not a bug, but a design choice, it just seems like it should be handled more gracefully.
One of our Feign clients looked like:
This works. However, changing
request
type fromMap<String, ?>
toMap<String, String>
causes Feign to fail with:During my investigation, I learned about Feign's close relationship with
Map<String, ?>
viafeign.codec.Encoder#MAP_STRING_WILDCARD
, but even if this is not a bug, but a design choice, it just seems like it should be handled more gracefully.io.github.openfeign:feign-core:12.5
io.github.openfeign:feign-okhttp:13.2.1
io.github.openfeign.form:feign-form:3.8.0
io.github.openfeign.form:feign-form-spring:3.8.0
io.github.openfeign:feign-slf4j:12.5
org.springframework.cloud:spring-cloud-starter-openfeign:4.0.6
OpenJDK 21
The text was updated successfully, but these errors were encountered: