我在寫一些Quartz作業。石英屬性文件和石英作業xml保存在src/main/resources/quartz /文件夾下。無法從web.xml中的Maven資源文件夾中提到屬性文件作爲上下文參數值
我提供路徑石英屬性文件是這樣的:
<!-- Quartz schedular context parameters -->
<context-param>
<param-name>quartz:config-file</param-name>
<param-value>classpath*:quartz.properties</param-value>
</context-param>
我得到異常: org.quartz.SchedulerException:屬性文件:「類路徑*:quartz.properties」無法讀取。 [見嵌套異常:java.io.FileNotFoundException:類路徑*:quartz.properties(沒有這樣的文件或目錄)]
我嘗試添加在/ WEB-INF /石英夾石英屬性文件並給路徑
<param-value>classpath*:quartz.properties</param-value>
in web xml。
請建議我是否做錯了什麼。
UPDATE:
appFolder - WEB-INF
|_ classes
|_ quartz (with properties file in it)
|_ com (all class files in it)
|_ lib
|_ spring (spring-servlet.xml in it)
|_ view (jsp files in it)
|_ web.xml
你可以在文章中的戰爭中的WEB-INF文件夾中包含文件和文件夾結構嗎? – Sudhakar 2013-02-23 07:51:10
@Sudhakar請參閱更新。 – 2013-02-23 08:03:04