Spring methodInvokingTimer, not displaying property

I imported the package org.spring.schedule.timer2.5.6A

. using eclipse and created the following beans. My problem is that I cannot see / cannot set property values ​​for the bean methodInvokingTASK

(the last one) where I should.

property - targetObject

property - targetMethod

      

I don't know what is wrong, I am skipping imports or doing something stupid.

<bean id = "scheduledTASK" class ="org.springframework.scheduling.timer.ScheduledTimerTask">
    <property name="delay" value="1000" />
    <property name="period" value="6000"/>
    <property name="timerTask" ref="methodInvokingTASK" />
</bean>


<bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">
    <property name="scheduledTimerTasks">
        <list>
            <ref local="scheduledTASK"/>
        </list>
    </property>
</bean>

    <bean id="methodInvokingTASK" class="org.springframework.scheduling.timer.MethodInvokingTimerTaskFactoryBean">

   </bean>

      

+2
spring eclipse scheduling


source to share


No one has answered this question yet

Check out similar questions:

1873
What's the difference between @Component, @Repository and @Service annotations in Spring?
866
How to solve "Executing plugins not covered by lifecycle config" for Spring Data Maven Builds
708
How to configure port for Spring Boot application
704
How do I show line numbers in Eclipse?
562
What is the Spring Framework for?
8
IntelliJ + Spring Web MVC
3
Spring Security with OpenIDAuthenticationFilter issue
1
detachCopy working on JDO with ObjectDB?
1
Testing JNDI Spring Websphere outside of container
0
Best way to implement Spring webservices



All Articles
Loading...
X
Show
Funny
Dev
Pics