Implement alternative JavaBean support

Add support for multiple JavaBean specification implementations.

If the class java.beans.BeanInfo is available, the full JavaBeans
implementation is used (same behaviour as before this patch).

If the full JavaBeans implementation is not available, a built-in,
stand-alone implementation is used that only provides the JavaBeans
functionality that does not depend on any of the java.beans.* classes
(essentially getter/setter support).

Note that the configuration system properties are intended for testing
only. They are NOT part of the public API.
8 files changed
tree: 66f8f275e8a6116002c4ec2d636bb0ff9907a65e
  1. api/
  2. spec/
  3. src/
  4. .gitignore
  5. CONTRIBUTING.md
  6. exclude.xml
  7. LICENSE.md
  8. NOTICE.md
  9. pom.xml
  10. README.md
README.md

Jakarta Expression Language

This repository contains the source for:

  • the Jakarta Expression Language API (/api) -
  • the Jakarta Expression Language specification (/spec)

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.