Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 3.65 KB

ejb.md

File metadata and controls

44 lines (37 loc) · 3.65 KB

Bookmarks tagged [ejb]

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...


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...


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


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...


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.


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...