ejb.md
July 15, 2021 · View on GitHub
Bookmarks tagged [ejb]
www.codever.land/bookmarks/t/ejb
CDI and @Startup: SOLVED! | New posts here >>> rmannibucau.metawerx.net
https://rmannibucau.wordpress.com/2015/03/10/cdi-and-startup/
Speaking on the CDI list about CDI 2.0 standalone container API Jozef Hartinger sent an answer which is quite obvious when you know it but which can change your life if you don’t: how CDI 1.1 introduc...
- :calendar: published on: 2015-03-10
- tags: javaee, cdi, ejb, annotations
Message Driven Beans, attributes explanation - Jboss Docs
https://docs.jboss.org/ejb3/docs/tutorial/mdb/mdb.html
This example shows you how to implement an MDB with EJB 3.0 using annotations. Take a look at [ExampleMDB.java](https://docs.jboss.org/ejb3/docs/tutorial/mdb/src/org/jboss/tutorial/mdb/bean/ExampleMDB...
- tags: java, javaee, ejb, message-driven-bean, messaging
What Is Faster EJBs or CDI? - YouTube
https://www.youtube.com/watch?v=6Gm0u9gX56w
Live coding of two simple jax-rs resources one annotated with EJB and one with CDI plus a benchmarking test with jmh. EJB performs better in this scenario. Write your benchmark for your situation
- tags: javaee, jaxrs, ejb, cdi, benchmarking
@Stateless As JAX-RS Resource? - 5min
https://www.youtube.com/watch?time_continue=96&v=BnUsNlPnZZo&feature=emb_logo
@Stateless is an interesting component to be used as JAX-RS resource. Even if performance is not your primary goal: [https://www.youtube.com/watch?v=6Gm0u9gX56w](https://www.youtube.com/watch?v=6Gm0u9...
- :calendar: published on: 2016-04-26
- tags: java, javaee, ejb, monitoring, microservices
@Asynchronous does not work from inside the same EJB
https://www.whitebyte.info/programming/java/asynchronous-does-not-work-from-inside-the-same-ejb
The @Asynchronous annotation does not work from inside the same EJB. The solution is to use a separate EJB that wraps the async Method.
- tags: javaee, ejb, asynchronous, async
How to build and clear a reference data cache with singleton EJBs and MBeans
http://www.codingpedia.org/ama/how-to-build-and-clear-a-reference-data-cache-with-singleton-ejbs-and...
In one of my projects I had a requirement to load reference data from several sources in a Java EE 6 WebLogic environment, with EclipseLink as ORM framework. Since I couldn’t find an annotation in the...