I'm trying to use the Timer Service in EJB 3.1 in my app.
@Stateless
@LocalBean
public class StatelessTimerSessionBean {
@Schedule(minute = "*", second = "0", dayOfMonth = "*", month = "*", year = "*", hour = "9-17", dayOfWeek = "Mon-Fri")
public void myTimer() {
System.out.println("Timer event: " + new Date());
}
}
".. set the EJB Timer Service’s Timer DataSource setting to a valid JDBC resource.."
from EJB Timer Service
I cannot figure out how to configure the Timer Datasource correctly?
The error I get when deploying is:
SEVERE: Exception while invoking class org.glassfish.ejb.startup.EjbApplication start method
java.lang.RuntimeException: EJB Timer Service is not available
Running: glassfish-3.1.2.2
1. Example Database Setup
I use MySQL for my database.
Create the table
EJB__TIMER__TBL
from{GF_HOME}/glassfish/lib/install/databases/ejbtimer_{DB_ENGINE}.sql
DB_ENGINE = e.g MySQL:
CREATE TABLE EJB__TIMER__TBL (
`CREATIONTIMERAW` BIGINT NOT NULL,
`BLOB` BLOB,
`TIMERID` VARCHAR(255) NOT NULL,
`CONTAINERID` BIGINT NOT NULL,
`OWNERID` VARCHAR(255) NULL,
`STATE` INTEGER NOT NULL,
`PKHASHCODE` INTEGER NOT NULL,
`INTERVALDURATION` BIGINT NOT NULL,
`INITIALEXPIRATIONRAW` BIGINT NOT NULL,
`LASTEXPIRATIONRAW` BIGINT NOT NULL,
`SCHEDULE` VARCHAR(255) NULL,
`APPLICATIONID` BIGINT NOT NULL,
CONSTRAINT `PK_EJB__TIMER__TBL` PRIMARY KEY (`TIMERID`)
);
2. Server Configuration
- Start your GlassFish server admin console: usually
http://localhost:4848
- On your left navigate to [Configurations] > [server-config] > [EJB Container]
- Then click the TAB up top [EJB Timer Service]
- Then fill out Timer Datasource: with your JDBC Resource eg. [mysql-pu]. ( Note: Defaults to
jdbc/__TimerPool
) - Restart the Server
3. The Result
...
INFO: [TimerBeanContainer] Created TimerBeanContainer: TimerBean
INFO: EJB5181:Portable JNDI names for EJB TimerBean: [java:global/ejb-timer-service-app/TimerBean, java:global/ejb-timer-service-app/TimerBean!com.sun.ejb.containers.TimerLocal]
INFO: WEB0671: Loading application [ejb-timer-service-app] at [/ejb-timer-service-app]
INFO: EJB5109:EJB Timer Service started successfully for data source [mysql-pu]
INFO: Setting DBReadBeforeTimeout to false
INFO: ==> Restoring Timers ...
INFO: There are no EJB Timers owned by this server
INFO: <== ... Timers Restored.
...
4. Still Broken? TimerService just stopped working (it used to work)?
So this happened to me after a day full of "deploy on save". The TimerService was unavailable all of a sudden.
Severe: Exception while loading the app
Severe: Undeployment failed for context /ejb-timer-service-app
Warning: Cannot deploy or load EJBTimerService: org.glassfish.deployment.common.DeploymentException: Error in linking security policy for ejb-timer-service-app -- Inconsistent Module State
5. Useful Links
In JBoss/WildFly, you can follow these instructions:
Mastertheboss.com: Creating clustered EJB 3 Timers
Published: 08 March 2015
That sounds like the glassfish-3.1.2.2 does not support EJB3, try to use jboss 7.
http://docs.oracle.com/cd/E26576_01/doc.312/e24939/release-notes.htm
来源:https://stackoverflow.com/questions/13292473/set-configure-the-ejb-timer-service-s-datasource