Questions for the November edition of the http://airhacks.io show:
- Question about ejb scheduler vs java ee batch processing. What are pros and cons when using batch processing over ejb scheduler ? Marek
- Question about multi datasource and EJB. What is the best way to deal with EJBs
which need to use a specific database for caller/user? Should I use
Interceptors? Should I use injection with request scoped? Wesley - Statement: "You forgot to say one advantage of Spring over JEE. Spring you can deploy on any container." Mauricio
- 'How do you manage deployed microservices (status, healthchecks, restarting) locally and on servers?' Tomek
- 'How do you use Docker (what setup) locally and on servers? Tomek
- Does JSF play well with JavaScript frameworks? [Edward]
- Why It Is Impossible To Automatically Handle javax.persistence.OptimisticLockException? "...I had even more finding on optimisticLockException. I had encounter this
exception and my solution was pretty straight forward which was just retry and
it works fine with my design and the data were good. The catch is, recently I added a new table which has a relationship to the row
which was throwing the optimisticLockException. I noticed that the entry in the second table was not created because of this exception. However the record data consistency was maintained because of the retry. But I loose an important
information in my related table. Does anyone have suggestion on what to do with this kind of scenario?..." [Anuj] - can you share some updates on how to do high availability JEE apps in light of
JEE7 and tackling session stored data Ahmed
I have written some months ago a question to BalusC about scopes in JSF. However he didn't answer it so I'll ask it to you. I would appreciate if you could answer it.
The question came to my mind when reading this article where it talks about JSF Managed bean scopes: http://balusc.blogspot.com.es/2011/09/communication-in-jsf-20.html
My question is:
I don't understand when a request scoped bean is created, I mean, is it created for each HTTP request (so for all requests all managed beans would be created) or for a subset of the HTTP requests made (so for some request some managed beans wouldn't be created and other would)?
The same with @ViewScoped, don't know if it is created for each view you arrive to or for a subset of views.
I have this doubt because apparently if you use a request scoped bean instead of a session scoped bean, you are reducing the memory used in the server, but I don't get how you reduce the memory used if the bean is created for every HTTP request.