Netflix / archaius

Library for configuration management API
Apache License 2.0
2.46k stars 485 forks source link

Fallback to reflection if building lambda instance fails. #683

Closed rgallardo-netflix closed 11 months ago

rgallardo-netflix commented 11 months ago

In some Java versions (9 and 11 at least, others not tested) the call to LambdaMetafactory fails with a mysterious "invalid bytecode" error. Instead of trying to hack our way around the quirks of an already-deprecated java version, we simply fall back to calling the method via reflection. It's slower but it works.

Closes #682