2017-03-31 5 views
0

は石英スケジューラの周りの起動時の問題を引き起こしている石英スケジューラの周りに起動エラーが発生しました - NoSuchMethodError:中に発生したorg.quartz.Scheduler.getListenerManager()春4.2.5へのアップグレード春4.2.5へのアップグレード

例外コンテキストの初期化 - リフレッシュ試行の取り消し:org.springframework.beans.factory.BeanCreationException:ファイル[SaPvApp-context.xml]に定義された 'intAppService'という名前のBeanの作成中にエラーが発生しました:beanプロパティ 'quartzScheduler'の設定中にbean 'quartzScheduler' '; [:\統合アプリ\ SAPV \ CONFIG \ SaPvApp-のcontext.xml C]:の 呼び出し 'quartzScheduler' ファイルに定義された名前を持つBeanを作成エラー:ネストされた例外がorg.springframework.beans.factory.Bean

CreationExceptionですinitメソッドは失敗しました。ネストされた例外はjava.lang.NoSuchMethodErrorです:org.quartz.Scheduler.getListenerManager()Lorg/quartz/ListenerManager;

ポンポンから:

<bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> 
    <property name="autoStartup" value="false" /> 
    <property name="schedulerName" value="PvScheduler" /> 
    <property name="triggers"> 
     <list> 
      <!-- <ref bean="cronTrigger" /> --> 
     </list> 
    </property> 
</bean> 

<bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> 
    <property name="targetObject" ref="serviceTask" /> 
    <property name="targetMethod" value="run" /> 
    <property name="concurrent" value="false" /> 
    <property name="group" value="PV" /> 
    <property name="name" value="${app.service.name}${app.service.instance}-Job" /> 
    <property name="jobListenerNames"> 
     <list> 
      <!-- <value>PvJobListener</value> --> 
     </list> 
    </property> 
</bean> 

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> 
    <property name="jobDetail" ref="jobDetail" /> 
    <!--<property name="cronExpression" value="10 0/01 * * * ?" />--> 
    <!-- run twice a day at 3am and 3pm --> 
    <property name="cronExpression" value="0 0 3,15 ? * *" /> 
    <!-- run every 30 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:30:10 am, etc.) 
    <property name="cronExpression" value="10 0/30 * * * ?" /> --> 
</bean> 

編集:2.2.2に石英をアップグレードしようとする:

/** 
* Listen for Job and Scheduler events. 
*/ 
public void listen() { 
    if (this.quartzScheduler != null) { 
     try { 
      this.quartzScheduler.addJobListener(this); 
      this.quartzScheduler.addSchedulerListener(this); 
     } 
     catch (SchedulerException e) { 
      throw new IntegrationServiceException("listen", e); 
     } 
    } 
} 

エラー:

<dependency> 
    <groupId>org.opensymphony.quartz</groupId> 
    <artifactId>quartz</artifactId> 
    <version>1.6.5</version> 
</dependency> 

コンテキストファイルからメソッドaddJobListener(QuartzTas kScheduler)メソッドaddSchedulerListener(QuartzTaskScheduler)は型スケジューラ

編集4/3/17のために定義されていないタイプのスケジューラのため

定義されていません:私は本当の「=抽象追加することによって、抽象エラーを解決することができた 」しかし、私は下に掲載新しいエラーを取得しています私のBean定義に:

Error creating bean with name 'jobDetail' defined in file [C:\Integration Apps\SAPV\config\SaPvApp-context.xml]: Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'jobListenerNames' of bean class 

[org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean]: Bean property 'jobListenerNames' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1518) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1226) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:543) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:482) 
     at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) 
     at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) 
     at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:753) 
     at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:839) 
     at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:538) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:140) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:84) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:93) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:54) 
     at cmd.SaPvApp.main(SaPvApp.java:18) 
Caused by: org.springframework.beans.NotWritablePropertyException: Invalid property 'jobListenerNames' of bean class [org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean]: Bean property 'jobListenerNames' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? 
     at org.springframework.beans.BeanWrapperImpl.createNotWritablePropertyException(BeanWrapperImpl.java:231) 
     at org.springframework.beans.AbstractNestablePropertyAccessor.setPropertyValue(AbstractNestablePropertyAccessor.java:423) 
     at org.springframework.beans.AbstractNestablePropertyAccessor.setPropertyValue(AbstractNestablePropertyAccessor.java:280) 
     at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:95) 
     at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:75) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1514) 
     ... 15 more 

編集4/3/17 PT2: 私はjobListernersNamesをコメントアウトして、新しいエラーを得た:

org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.scheduling.quartz.CronTriggerBean] for bean with name 'cronTrigger' defined in file [C:\Integration Apps\SAPV\config\SaPvApp-context.xml]; nested exception is java.lang.ClassNotFoundException: 

org.springframework.scheduling.quartz.CronTriggerBean 
     at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1352) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineTargetType(AbstractAutowireCapableBeanFactory.java:628) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:597) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1445) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:975) 
     at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:752) 
     at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:839) 
     at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:538) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:140) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:84) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:93) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:54) 
     at cmd.SaPvApp.main(SaPvApp.java:18) 
Caused by: java.lang.ClassNotFoundException: org.springframework.scheduling.quartz.CronTriggerBean 
     at java.net.URLClassLoader.findClass(URLClassLoader.java:381) 
     at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) 
     at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
     at org.springframework.util.ClassUtils.forName(ClassUtils.java:250) 
     at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:394) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1397) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1344) 
     ... 12 more 

ここにコンテキストの状態があります。xmlファイルは、(私はそれが私の元のエラーを取得しますcronTriggerへのREFをバック追加した場合注意:

<bean name="intAppService" class="QuartzTaskScheduler" init-method="listen" abstract="true"> 
    <property name="name" value="PvJobListener" /> 
    <property name="quartzScheduler" ref="quartzScheduler"/> 
</bean> 

<bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> 
    <property name="autoStartup" value="false" /> 
    <property name="schedulerName" value="PvScheduler" /> 
    <property name="triggers"> 
     <list> 
      <!--<ref bean="cronTrigger" />--> 
     </list> 
    </property> 
</bean> 

<bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> 
    <property name="targetObject" ref="serviceTask" /> 
    <property name="targetMethod" value="run" /> 
    <property name="concurrent" value="false" /> 
    <property name="group" value="PV" /> 
    <property name="name" value="${app.service.name}${app.service.instance}-Job" /> 
    <!--<property name="jobListenerNames"> 
     <list> 
      <value>PvJobListener</value> 
     </list> 
    </property>--> 
</bean> 

<bean name="serviceTask" class="SaPvService"> 
    <property name="serviceTaskName" value="${app.service.name}${app.service.instance}"/> 
    <property name="hoursRepository" ref="hoursRepository"/> 
    <property name="primaveraSessionService" ref="primaveraSessionService"/> 
    <property name="resourceRateProcessor" ref="resourceRateProcessor"/> 
    <property name="workChunkRepository" ref="workChunkRepository"/> 
</bean> 

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> 
    <property name="jobDetail" ref="jobDetail" /> 
    <!--<property name="cronExpression" value="10 0/01 * * * ?" />--> 
    <!-- run twice a day at 3am and 3pm --> 
    <property name="cronExpression" value="0 0 3,15 ? * *" /> 
    <!-- run every 30 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:30:10 am, etc.) 
    <property name="cronExpression" value="10 0/30 * * * ?" /> --> 
</bean> 

編集4/3/17 PT2: を私は戻って、この中cronTrigger REFを置くそのような状況のためのエラーです:

文脈:

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> 
    <property name="jobDetail" ref="jobDetail" /> 
    <!--<property name="cronExpression" value="10 0/01 * * * ?" />--> 
    <!-- run twice a day at 3am and 3pm --> 
    <property name="cronExpression" value="0 0 3,15 ? * *" /> 
    <!-- run every 30 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:30:10 am, etc.) 
    <property name="cronExpression" value="10 0/30 * * * ?" /> --> 
</bean> 

<bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> 
    <property name="autoStartup" value="false" /> 
    <property name="schedulerName" value="PvScheduler" /> 
    <property name="triggers"> 
     <list> 
      <ref bean="cronTrigger" /> 
     </list> 
    </property> 
</bean> 

エラー:

2017-04-03 14:34:22,792 WARN {main} [org.springframework.context.support.FileSystemXmlApplicationContext] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.scheduling.quartz.CronTriggerBean] for bean with name 'cronTrigger' defined in file [C:\Integration Apps\SAPV\config\SaPvApp-context.xml]; nested exception is java.lang.ClassNotFoundException: org.springframework.scheduling.quartz.CronTriggerBean 
*** SaPvApp: Unexpected service error at Mon Apr 03 14:34:23 CDT 2017 
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.scheduling.quartz.CronTriggerBean] for bean with name 'cronTrigger' defined in file [C:\Integration Apps\SAPV\config\SaPvApp-context.xml]; nested exception is java.lang.ClassNotFoundException: org.springframework.scheduling.quartz.CronTriggerBean 
     at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1352) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineTargetType(AbstractAutowireCapableBeanFactory.java:628) 
     at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:597) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1445) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:975) 
     at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:752) 
     at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:839) 
     at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:538) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:140) 
     at org.springframework.context.support.FileSystemXmlApplicationContext.<init>(FileSystemXmlApplicationContext.java:84) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:93) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:54) 
     at cmd.SaPvApp.main(SaPvApp.java:18) 
Caused by: java.lang.ClassNotFoundException: org.springframework.scheduling.quartz.CronTriggerBean 
     at java.net.URLClassLoader.findClass(URLClassLoader.java:381) 
     at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) 
     at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
     at org.springframework.util.ClassUtils.forName(ClassUtils.java:250) 
     at org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:394) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.doResolveBeanClass(AbstractBeanFactory.java:1397) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1344) 
     ... 12 more 

更新4/3/17 14 :55 CT: 私はCronTriggerBeanは今 は今、私はこのエラーを取得していCronTriggerFactoryBeanあるコンテキストファイルに変更:

2017-04-03 14:52:47,570 INFO {main} [org.quartz.core.QuartzScheduler] - 

Scheduler meta-data: Quartz Scheduler (v2.2.2) 'PvScheduler' with instanceId 'NON_CLUSTERED' 
    Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. 
    NOT STARTED. 
    Currently in standby mode. 
    Number of jobs executed: 0 
    Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. 
    Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. 

2017-04-03 14:52:47,572 INFO {main} [org.quartz.impl.StdSchedulerFactory] - Quartz scheduler 'PvScheduler' initialized from an externally provided properties instance. 
2017-04-03 14:52:47,574 INFO {main} [org.quartz.impl.StdSchedulerFactory] - Quartz scheduler version: 2.2.2 
2017-04-03 14:52:47,576 INFO {main} [org.quartz.core.QuartzScheduler] - JobFactory set to: [email protected]7c 
*** SaPvApp: Registering JVM shutdown hook 
*** SaPvApp: version 17.1.0 
*** SaPvApp: Adding service-stop event listeners 
*** SaPvApp: Starting service at Mon Apr 03 14:52:47 CDT 2017 
*** SaPvApp: Unexpected service error at Mon Apr 03 14:52:47 CDT 2017 
org.springframework.beans.factory.BeanIsAbstractException: Error creating bean with name 'intAppService': Bean definition is abstract 
     at org.springframework.beans.factory.support.AbstractBeanFactory.checkMergedBeanDefinition(AbstractBeanFactory.java:1288) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:285) 
     at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) 
     at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1054) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:112) 
     at AbstractCommandLineApplication.runApplication(AbstractCommandLineApplication.java:54) 
     at cmd.SaPvApp.main(SaPvApp.java:18) 
*** SaPvApp: Calling service stop event listeners 
*** SaPvApp: Exiting service at Mon Apr 03 14:52:47 CDT 2017 
*** SaPvApp ShutdownHook: Service shutdown initiated at Mon Apr 03 14:52:47 CDT 2017 
*** SaPvApp ShutdownHook: Closing application context 
2017-04-03 14:52:47,609 INFO {ApplicationShutdownHook} [org.springframework.context.support.FileSystemXmlApplicationContext] - Closing org.[email protected]63e31ee: startup date [Mon Apr 03 14:52:41 CDT 2017]; root of context hierarchy 
2017-04-03 14:52:47,615 INFO {ApplicationShutdownHook} [org.springframework.context.support.DefaultLifecycleProcessor] - Stopping beans in phase 2147483647 
2017-04-03 14:52:47,618 INFO {ApplicationShutdownHook} [org.springframework.scheduling.quartz.SchedulerFactoryBean] - Shutting down Quartz Scheduler 
2017-04-03 14:52:47,619 INFO {ApplicationShutdownHook} [org.quartz.core.QuartzScheduler] - Scheduler PvScheduler_$_NON_CLUSTERED shutting down. 
2017-04-03 14:52:47,620 INFO {ApplicationShutdownHook} [org.quartz.core.QuartzScheduler] - Scheduler PvScheduler_$_NON_CLUSTERED paused. 
2017-04-03 14:52:47,621 INFO {ApplicationShutdownHook} [org.quartz.core.QuartzScheduler] - Scheduler PvScheduler_$_NON_CLUSTERED shutdown complete. 
*** SaPvApp ShutdownHook: Service shutdown complete 

編集4/4/17 7時59分:私は親抽象クラスに

を作成しようとした を
<bean name="intAppServiceParent" abstract = "true"> 
    <property name="nameParent" value="PvJobListenerParent" /> 
    <property name="quartzSchedulerParent" ref="quartzSchedulerParent"/> 
</bean> 

<bean name="intAppService" class="QuartzTaskScheduler" init-method="listen" parent = "intAppServiceParent"> 
    <property name="name" value="PvJobListener" /> 
    <property name="quartzScheduler" ref="quartzScheduler"/> 
</bean> 

が、私はこのエラーを取得しています:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'intAppService' defined in file [C:\Integration Apps\SAPV\config\SaPvApp-context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [QuartzTaskScheduler]: Is it an abstract class?; nested exception is java.lang.InstantiationException 

私はJavaコードのクラス抽象を行わない場合、私は協力を得ますこれについてのエラー:

The type QuartzTaskScheduler must implement the inherited abstract method SchedulerListener.triggersPaused(String) 

これを修正する方法がわかりません。

+0

spring 4.2.5のように見えます。quartz 2.2.2:https://repo1.maven.org/maven2/org/springframework/spring-context-support/4.2.5.RELEASE/spring-context-support -4.2.5.RELEASE.pomバージョンをアップグレードしようとしませんでしたか? –

+0

refと値を戻すとこのエラーが発生します。 プロパティ[triggers] with key [0];ネストされた例外は、ファイル 'C:\ Integration Apps \ SAPV \ config \ SaPvApp-context.xml]に定義された' cronTrigger 'という名前のBeanです。ネストされた例外はorg.springframework.scheduling.quartzです。私がしたが、その後、私は、コードエラーが発生しますCronTriggerBean – russell1997

+0

@RomanPuchkovskiy : 方法addJobListener(QuartzTaskScheduler)はQuartzTaskSchedulerが継承された抽象メソッドSchedulerListener.jobAdded(JobDetail)を実装しなければならないタイプ型スケジューラ のために定義されていません – russell1997

答えて

0

これらの手順を簡単に見つけるために、解答としてコメントに散在するソリューションステップを掲載しています。

クォーツ統合を持つ春の4.2.5へのアップグレードに必要な手順のいくつか:

  1. 春4.2.5は、石英2.2.2を使用し、クォーツ1.xのでは動作しないので、クォーツバージョンがなければなりません更新しました。
  2. addJobListener()およびaddSchedulerListener()の方法は、getListenerManager()方法で利用可能なQuartzSchedulerからListenerManagerに移動されました。
  3. setJobListenerNames()メソッドが削除されたため、jobListenerNamesをXML構成で設定しないでください。
+0

あなたは石英2.2.2のペーストの依存性をしてください。同様の問題は、私が直面しています。..春4.3.9とopernsymphony石英1.6.1 – spandey15

+0

org.quartz-スケジューラ 石英 2.2.2 spandey15 @ –

0

オーバーライドされた石英バージョンは、スプリングのバージョンと互換性がありません。あなたのpomからquartzのバージョン宣言を削除するか、またはSpringのコンテキスト4.2.5でサポートされている石英のバージョンを2.2.2にアップグレードしてみてください。

+0

私は水晶をアップグレードしましたが、その後、私はこれらのようなコードのエラーを取得: メソッドaddJobListener(QuartzTaskScheduler)は型スケジューラの未定義です (QuartzTaskSchedulerを継承した抽象メソッドSchedulerListener.jobAdded(JobDetail) – russell1997

+0

メソッドaddJobListenerを実装しなければならないタイプのQuartzTaskScheduler (this.quartzScheduler!= nullの場合)){ \t \t)型スケジューラ – russell1997

+0

公共ボイドは(聞くために型スケジューラ 方法addSchedulerListener(QuartzTaskScheduler)が定義されていない定義されていない{ \t \t \t試し{ \t \t \t \t this.quartzScheduler.addJobListener(this); \t \t \t \t this.quartzScheduler.addSchedulerListener(本) \t \t \t} \t \t \tキャッチ(SchedulerException電子){ \t \t \t \tは(E、 "聞く")新しいIntegrationServiceExceptionを投げます。 \t \t \t} \t \t} \t} – russell1997

0

スプリングとクォーツのアップグレードに加えて、アップグレードのコードがすべての抽象メソッドを実装していないため、QuartzTaskSchedulerの周りに特にJavaコードを修正する必要がありました。私はそれらをすべて実装しなければなりませんでした。親クラスが変更されたため、新しい抽象メソッドが追加されたか、または一部のメソッドのシグネチャが変更された可能性があります。

関連する問題