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
After #29296, the public constructor and setters are deprecated in favour of using the programmatic builder, and if the builder is used, the setters raise IllegalStateException, but afterPropertiesSet and setEmbeddedValueResolver need to be more lenient and simply do nothing if the builder was used. Currently, setEmbeddedValueResolver doesn't to that and leads to "IllegalStateException: HttpServiceProxyFactory was created through the builder".
A workaround is to not declare HttpServiceProxyFactory as a bean.
The text was updated successfully, but these errors were encountered:
After #29296, the public constructor and setters are deprecated in favour of using the programmatic builder, and if the builder is used, the setters raise
IllegalStateException
, butafterPropertiesSet
andsetEmbeddedValueResolver
need to be more lenient and simply do nothing if the builder was used. Currently,setEmbeddedValueResolver
doesn't to that and leads to "IllegalStateException: HttpServiceProxyFactory was created through the builder".A workaround is to not declare
HttpServiceProxyFactory
as a bean.The text was updated successfully, but these errors were encountered: