↧
Answer by ug_ for "Property not found on type" when using interface default...
You can work around this by creating a custom ELResolver implementation which handles default methods. The implementation I have made here extends SimpleSpringBeanELResolver. This is Springs...
View Article"Property not found on type" when using interface default methods in JSP EL
Consider the following interface: public interface I { default String getProperty() { return "..."; } } and the implementing class which just re-uses the default implementation: public final class C...
View ArticleAnswer by Gareth for "Property not found on type" when using interface...
Spring 5 removed SimpleSpringBeanELResolver so the above answer no longer works, but turns out that the base class didn't really do anything anyway. Spring 5 version below with fixes to the issues...
View Article