I am using quartz scheduler which runs after every 15 minutes . So the parameter 15(interval ) i am defining in ApplicationResource.properties file I have listener class defined as
public class QuartzSchedulerListener extends ActionSupport implements ServletContextListener
So in public void contextInitialized(ServletContextEvent context)
in this method i am trying to get parameter value using ActionSupports -- getText() method
getText("INTERVAL_TIME");
but i am getting error
Can please somebody tell me whats going with the code or any other alternative way to access the properties of ApplicationResources file
Thanks in advance