`
smallTengGer
  • 浏览: 34232 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Spring Quartz 定时任务报错 java.lang.NoSuchMethodError: org.apache.commons.collections

阅读更多
Caused by: java.lang.NoSuchMethodError: org.apache.commons.collections.SetUtils.orderedSet(Ljava/util/Set;)Ljava/util/Set;的错误。是因为我们使用的commons-collections.jar版本太低导致的要使用3.*的才行。如果你用的myEclipse,如果导入了commons-collections.jar 3.*的包还不行的话,而且没有找到其他的包的话很可能是MyEclipse自带的Liberary中包括了版本低的包而你导入了这个lib。比如MyEclipse的Hibernate的Lib中包括commons-collections.jar但是版本是2.*。Window->Preferences->Myeclipse->Project Capabilities->Hibernate从lib中删除此包即可。(注:此时有三个选项卡hibernate2,hibernate3,hibernate3.1。),用的哪个版本选哪个。下面有commons-collections.jar包。把它删了。如果还不行。看看你的tomcat发布工程的classpath下是否有commons-collections.jar包。
分享到:
评论

相关推荐

    Java_Spring与Quartz的整合

    - 通过实现`org.springframework.scheduling.quartz.JobExecutionException`,可以捕获Job执行过程中的异常,进行统一处理。 8. **事务支持** - 如果Job需要在数据库事务中执行,可以利用Spring的事务管理功能,...

    quartz-all-1.6.6.jar

    quartz-all-1.6.6.jar ...否则报错 java.lang.IncompatibleClassChangeError: class org.springframework.scheduling.quartz.CronTriggerBean has interface org.quartz.CronTrigger as super class

    Spring Quartz定时任务 jar包

    3. 定义Job:创建实现`org.quartz.Job`接口的类,这个类将包含定时任务的具体逻辑。 4. 创建Trigger:Trigger定义了Job的执行策略,如执行频率、重复次数等,可以使用CronTrigger或者SimpleTrigger。 5. 配置Job和...

    Quartz--JAVA定时任务\Java应用:Java调度任务和Spring Quartz (1)

    在Quartz中,作业(Job)是需要执行的任务,它实现了`org.quartz.Job`接口或其子类,例如`QuartzJobBean`。触发器(Trigger)则是定义任务执行的时间规则,它可以是简单触发器(SimpleTrigger)或cron触发器...

    spring-framework-3.0.5.RELEASE-dependencies-1

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    Spring集成Quartz定时任务框架介绍.docx

    <bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> ``` - **配置触发器**: ```xml <bean id="cronTrigger" class="org.springframework....

    Spring Quartz定时任务所需要的6个jar包

    Spring Quartz定时任务所需要的6个jar包,找到6个可是不容易哦。commons-collections.jar.zip+commons-logging.jar+jta.jar+log4j-1.2.14.jar.zip+quartz-all-1.6.0.jar+spring-2.0.6.jar

    spring quartz定时任务demo

    4. **示例代码**:可能包含`Job`类,这些类实现了`org.quartz.Job`接口,代表具体的定时任务逻辑。同时,还有`Trigger`配置,定义了任务的触发规则,如执行频率、时间间隔等。 在实际使用中,你需要在`...

    spring-framework-3.0.5.RELEASE-dependencies-5

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    定时任务Quartz

    只需基本的spring包即可 注:要是项目报错 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 缺少jar包,这个jar包在以上压缩包中就有

    spring-framework-3.0.5.RELEASE-dependencies-6

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    java-springboot-quartz-定时任务.zip

    在上述代码中,`MyTask`是你自定义的任务类,它需要实现`org.quartz.Job`接口,并重写`execute`方法,以定义任务的具体逻辑。 ```java import org.quartz.JobExecutionContext; import org.quartz....

    spring-framework-3.0.5.RELEASE-dependencies-3

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    spring-framework-3.0.5.RELEASE-dependencies-2

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    spring3配置quartz定时任务

    1. **定义作业**:作业是需要定时执行的任务,可以创建一个实现了`org.quartz.Job`接口的类。例如,我们可以创建一个名为`MyJob`的类: ```java public class MyJob implements Job { @Override public void ...

    spring-framework-3.0.5.RELEASE-dependencies-4

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    spring-framework-3.0.5.RELEASE-dependencies-7

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    spring之定时任务实现(spring-task和quartz等不同方式)

    <bean id="scheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <!-- 这里添加触发器配置 --> <!-- 这里添加任务详情配置 --> ``` 然后,定义Job类并实现`org....

    spring-framework-3.0.5.RELEASE-dependencies-8

    org.apache.commons org.apache.coyote org.apache.ibatis org.apache.juli 4号包: org.apache.tiles org.apache.velocity org.apache.xerces org.apache.xml org.apache.xmlbeans org.apache.xmlcommons org....

    完美解决多应用服务器负载均衡环境下spring quartz同一定时任务重复执行问题

    4. **公平调度**:确保`org.quartz.threadPool.class`配置为`org.quartz.simpl.SimpleThreadPool`,并设置`org.quartz.threadPool.threadPriority`为低于默认的线程优先级,以便让任务在所有服务器间公平分配。...

Global site tag (gtag.js) - Google Analytics