我正在使用每 15 分钟运行一次的石英调度程序。因此,我在 ApplicationResource.properties 文件中定义的参数 15(interval) 我将侦听器类定义为
public class QuartzSchedulerListener extends ActionSupport implements ServletContextListener
所以在public void contextInitialized(ServletContextEvent context)
这个方法中,我试图使用 ActionSupports -- getText() 方法获取参数值
getText("INTERVAL_TIME");
但我收到错误
有人可以告诉我代码或任何其他访问ApplicationResources文件属性的替代方法是什么吗
提前致谢