Friends of OpenJDK Today

EJB Support in Piranha via CDI

November 15, 2022

Author(s)

  • Ondro Mihalyi

    Ondro is a software developer and consultant. He’s passionate about helping his clients and the wider Java community with their projects based on Jakarta EE and similar technologies. He's a ... Learn more

Enterprise Beans was once the face of Java EE, but as we discussed in the previous article, is currently de-emphasised in Jakarta EE.

However, since there’s so much existing code using Enterprise Beans, a certain level of support is still desired.

Piranha Cloud, a relatively new runtime supporting Jakarta EE, takes a somewhat novel approach to Enterprise Beans. Instead of implementing a separate container, Piranha Cloud, via the OmniBeans project, maps Enterprise Beans annotations to equivalent functionality in CDI itself, or to technologies in Jakarta EE leveraging CDI (such as Jakarta Transactions).

Enterprise Beans features not currently present in Jakarta EE, such as the pooled concept for Stateless beans, are provided by the OmniServices library.

An overview of the mappings is depicted in the following diagram:

OmniBeans primarily consists out of a CDI extension, that observes the ProcessAnnotatedType event. When it encounters say the @Stateless annotation on a bean it adds @Pooled from OmniServices, and depending on any @jakarta.ejb.TransactionAttribute and/or @jakarta.ejb.TransactionManagement annotation the @jakarta.transaction.Transactional annotation from Jakarta Transactions.

Piranha Cloud uses the standalone and pluggable Jakarta Transactions implementation Transact (which originates from GlassFish) for the code behind the @Transactional annotation. For the @Asynchronous annotation OmniServices is currently used, but in the future a pluggable Jakarta Concurrency implementation should be used for this. The “Concurrency RI” project is a likely candidate to base such an implementation on (with the proposed name Concurro).

The development of OmniBeans is still in its early days, but it's already able to pass a test taken from the EJB Lite TCK, which is the stateless-tx test. This contains beans such as the following:

@Stateless
public class TxBean {

    @PersistenceContext(unitName = "ejblite-pu")
    private EntityManager entityManager;

    /*
     * @testName: supports
     *
     * @test_Strategy:
     */
    @TransactionAttribute(SUPPORTS)
    public void supports(CoffeeEntity coffeeEntity, boolean flush) {
        updatePersist(coffeeEntity, flush);
    }

    // [...]

    protected void updatePersist(CoffeeEntity coffeeEntity, boolean flush) {
        coffeeEntity.setPrice(coffeeEntity.getPrice() + 100);
        entityManager.persist(coffeeEntity);

        if (flush) {
            entityManager.flush();
        }
    }

}

and

@Stateless
@TransactionManagement(BEAN)
public class TestBean {

    private EntityManager entityManager;
    private UserTransaction userTransaction;

    private TxBean txBean;

    @PersistenceContext(unitName = "ejblite-pu")
    public void setEm(EntityManager entityManager) {
      this.entityManager = entityManager;
    }

    @Resource
    public void setUt(UserTransaction userTransaction) {
      this.userTransaction = userTransaction;
    }

    @EJB(beanInterface = TxBean.class)
    public void setTxBean(TxBean b) {
        txBean = b;
    }
}

As can be seen, those beans are far from trivial from a technical perspective. The fact that OmniBeans is already able to pass such a test bodes well for the future.

Hopefully at some point it will be able to fully pass the entire EJB Lite TCK this way, which would make for a very interesting Enterprise Beans implementation.

More information:

This article was originally published on the OmniFish blog. For more information about Jakarta EE, Eclipse GlassFish and related topics, subscribe to follow the OmniFish blog here: https://omnifish.ee/blog/.

OmniFish - Jakarta EE experts

  • Eclipse GlassFish Production Support
  • Jakarta EE Consulting
  • Custom Development with Jakarta EE

For more information about OmniFish, contact them at their contact page, or Twitter at @OmniFishEE.

Topics:

Related Articles

View All

Author(s)

  • Ondro Mihalyi

    Ondro is a software developer and consultant. He’s passionate about helping his clients and the wider Java community with their projects based on Jakarta EE and similar technologies. He's a ... Learn more

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard