Quartzジョブを設定しました。これはEclipseに付属しているSpringのDebug Tomcatで起動します。しかし、別のTomcatインストールにアプリケーションをデプロイすると、そのジョブは起動しません。Java - Quartz JobはDebug Tomcatで動作しますが、別のTomcatでは動作しません
ここに私の石英-config.xmlのだ:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
<context:component-scan base-package="de.java.scheduling" />
<bean name="issueSyncJobDetail" class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
<property name="jobClass" value="de.java.scheduling.IssueSyncJob" />
<property name="durability" value="true" />
</bean>
<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
<property name="jobDetail" ref="issueSyncJobDetail" />
<property name="cronExpression" value="0/10 * * ? * MON-FRI" />
</bean>
<!-- Scheduler factory bean to glue together jobDetails and triggers to Configure Quartz Scheduler -->
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="jobDetails">
<list>
<ref bean="issueSyncJobDetail" />
</list>
</property>
<property name="triggers">
<list>
<ref bean="cronTrigger" />
</list>
</property>
</bean>
一度私のTomcatにデプロイされたトリガはない仕事のための原因である可能性がありますどのような任意のアイデアは?
から大規模な答えが含まれているあなたのXMLには間違いがないように見えるコメントすることはできません、あなたはより多くを提供することができます私はあなたのようなミスを犯しました。私はEclipseでTomcatでデバッグしてから、warファイルにパッケージ化してから、webappsフォルダに入れて、EclipseでTomcatを起動します。あなたは私のようなミスをしましたか? – Wangbo
なぜあなたのスタンドアロンTomcatであなたのために働かなかったのですか?間違いは何でしたか? – SpaceJump