1
vote
1answer
82 views
Problem with spring quartz
Hello all, I'm trying to invoke method based on some interval time, here are some beans inside applicationContext.xml
<bean id="MngtTarget"
class="com.management.engine.Imple …
0
votes
3answers
102 views
How to execute method using spring beans
I need findItemByPIdEndDate() method of the MngtImpl class to be invoked every 5000ms, but nothing appears to be happening. Am I missing something?
<bean id="findItemByPIdEndDa …
0
votes
1answer
29 views
creating spring bean
Is there a way to write a Spring bean in XML so that it uses constructor which doesn't need an argument.
For instance:
public class CronSchedule {
public CronSchedule() throws …
0
votes
2answers
70 views
Create bean of type Set<Class<?>>
How can I create a bean of type Class?
I found a way using getClass() but that requires an instance and cannot be used via factory-method since it is not static. It also requires …
10
votes
1answer
2k views
annotation based Spring bean validation
Hi,
I'm investigating an annotation-based approach to validating Spring beans using spring modules. In this tutorial, the following bean (getters and setters omitted) is used as a …
