Skip to main content

Jakarta EE Platform Call

Date: 2023-11-14 Present:

  • Arjan Tijms (OmniFaces)
  • Ivar Grimstad (Eclipse Foundation)
  • Jared Anderson (IBM)
  • Emily Jiang (IBM)
  • Jim Krueger (IBM)
  • Nathan Rauh (IBM)
  • Tom Watson (IBM)
  • Scott Marlow (Red Hat)
  • Lukas Jungmann (Oracle)
  • Brian Stansberry (Red Hat)
  • John Clingan (Red Hat)
  • Scott Stark (Red Hat)
  • Dmitry Kornilov (Oracle)
  • Jan Westerkamp (iJUG, 35 min later)
  • Cesar Hernandez

Agenda and Minutes

Housekeeping

  • Arjan to run the meeting Nov 7, 14, 21, and 28

Jea-69 cdi centric platform-552.

Currently, you need to do this:

@Produces @PersistenceContext(unitName="UserData")
@Users EntityManager userDatabaseEntityManager;

@Inject @Users EntityManager userDatabase;

—-> Move essentially that code to a CDI extension so users don’t have to add it

Jakarta Persistence injection of EntityManager

Simulate disappeared SecurityManager?

  • Code level security was intended for a trusted AS to run untrusted apps
  • Today we run AS + single App in (docker) container or Virtual PC (Xen, vmware) \

Back to the top