This is an automated email from the ASF dual-hosted git repository.
rmaucher pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push:
new b7fad7b8f0 Fix EL standalone interface bean properties discovery
b7fad7b8f0 is described below
commit b7fad7b8f034c707d354c0fcd01a5e5d73d39f6b
Author: remm <[email protected]>
AuthorDate: Wed May 20 09:01:57 2026 +0200
Fix EL standalone interface bean properties discovery
---
java/jakarta/el/BeanSupportStandalone.java | 2 +-
webapps/docs/changelog.xml | 7 +++++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/java/jakarta/el/BeanSupportStandalone.java
b/java/jakarta/el/BeanSupportStandalone.java
index 6b05614b76..4ba89a7f83 100644
--- a/java/jakarta/el/BeanSupportStandalone.java
+++ b/java/jakarta/el/BeanSupportStandalone.java
@@ -181,7 +181,7 @@ class BeanSupportStandalone extends BeanSupport {
private void populateFromInterfaces(Class<?> aClass) {
Class<?>[] interfaces = aClass.getInterfaces();
for (Class<?> ifs : interfaces) {
- PropertyDescriptor[] pds = getPropertyDescriptors(type);
+ PropertyDescriptor[] pds = getPropertyDescriptors(ifs);
for (PropertyDescriptor pd : pds) {
if (!this.properties.containsKey(pd.getName())) {
this.properties.put(pd.getName(), new
BeanPropertyStandalone(this.type, pd));
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index acea8d48fa..c63dc6e9a0 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -162,6 +162,13 @@
</fix>
</changelog>
</subsection>
+ <subsection name="Jasper">
+ <changelog>
+ <fix>
+ Fix EL standalone interface bean properties discovery. (remm)
+ </fix>
+ </changelog>
+ </subsection>
<subsection name="Cluster">
<changelog>
<fix>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]