spring 定时任务的问题,

maven 注入了 定时器
然后启动服务 org.springframework.scheduling.quartz.CronTriggerBean
说这个calssnotfound , 还需要在哪里配置吗
这是 spring.xml里面配置的

    <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">           
        <property name="triggers">
            <list>
                <ref bean="upperJobTrigger" />
            </list>
        </property>
    </bean>


<bean id="branchRiskJob" class="com.tenke.productadmin.web.shedule.SheduleManageAction">
</bean>                         
<bean id="upperJobTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
    <property name="jobDetail" ref="branchRiskDetail" />
    <property name="cronExpression" value="0 0/2 * * * ?" />
</bean>
<bean id="branchRiskDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
    <property name="targetObject" ref="branchRiskJob" />
    <property name="targetMethod" value="upper" /> 
    <property name="concurrent" value="false" /><!-- 同一任务在前一次执行未完成而Trigger时间又到时是否并发开始新的执行, 
        默认为true. -->
</bean>

ing 定时任务的问题,
maven 注入了 定时器
然后启动服务 org.springframework.scheduling.quartz.CronTriggerBean
说这个calssnotfound , 还需要在哪里配置吗
这是 spring.xml里面配置的















<property name="targetObject" ref="branchRiskJob