1. EJB 3.1 timer rollback exception stackoverflow.comI've been getting a load of rollbackexception when calling some SELECT JPQL or namedqueries from a Singleton. The Singleton as one method with the @Schedule annotation calling the some others db query ... |
2. Can the EJB 3.1 @Schedule be configured outside of the application code? stackoverflow.comHow can I configure a schedule intervals:
|
3. Using @RunAs in my EJB Schedulers stackoverflow.comI have many EJBs with my business methods. These methods use @RolesAllowed annotation to check if user can execute this method. So I have an EJB Scheduler that calls these EJB methods. ... |
4. @Schedule methods in EJBs aren't executing after Exceptions stackoverflow.comI've got a method in a Java EE6 Singleton Session Bean which is called by a @Schedule(...) timer every 30 seconds. This works as expected until an exception is thrown and ... |
5. @Schedule annotation in Java EE stackoverflow.comI use the following annotation to call a stateless session bean once a 5 minutes:
I works as expected, except it stops itself after ... |
6. Have an EJB schedule tasks with "crontab syntax" stackoverflow.comI am trying to figure out the possibilities I have to solve the following problem. a) I want to have a database table that uses "crontab syntax" to schedule tasks, the structure ... |
7. Why is Jboss passing null Timer object to method annotated with @Timeout? stackoverflow.comI have a stateless bean which manages my timer service:
|
8. EJB stateless - Private members initialisation stackoverflow.comI'm new to EJB and I'm facing my first problem. I'm trying to use an @Schedule method contained in a Stateless EJB. I'd like this method to use a private member ... |
9. How to I make this Timer Service Class handle the "change in scheduled time"? stackoverflow.comSample Code: @Singleton @Startup public class EBlastScheduler { |
10. Can I be sure that a SLSB which created a Timer will be handling its timeout (Java EE 5)? stackoverflow.comIn Java EE 5, when using timers and the timer service, who handles the timeout invocation? |