Simplify bean support (#446)

Removes unnecessary code
Includes test that confirms code is unnecessary.

For standalone support, the property descriptor lookup uses Class.getMethods()
For full support, as of Java 21, Introspector includes default methods.
https://bugs.openjdk.org/browse/JDK-8071693
https://github.com/openjdk/jdk/commit/1e4eafb4fe70832294a12938d93e7860073cf4cf
3 files changed
tree: 4daa181bb87a951e8b79fbdd500a26be3e915e09
  1. .github/
  2. api/
  3. spec/
  4. src/
  5. tck/
  6. .gitignore
  7. CONTRIBUTING.md
  8. exclude.xml
  9. LICENSE.md
  10. NOTICE.md
  11. pom.xml
  12. README.md
README.md

Jakarta Expression Language

This repository contains the source for the Jakarta Expression Language API and associated specification document.

Releases of both the API and the specification document, along with a details of the compatible implementations for each release, are listed on the Jakarta EE specification page for the Jakarta Expression Language.

Building

API

Jakarta Expression Language API can be built by executing the following from the project root:

cd api
mvn clean package

The API jar can then be found in /impl/target.

Specification

Jakarta Expression Language specification can be built by executing the following from the project root:

cd spec
mvn clean package

The API jar can then be found in /spec/target.

Making Changes

To make changes, fork this repository, make your changes, and submit a pull request.

About Jakarta Expression Language

Jakarta Expression Language defines an expression language for Java applications.

TCK Challenges

All test challenges for Jakarta Expression Language must be resolved by Active Resolution. Please see the TCK Users guide for more details.