How to set property using "tasklet ref" tag

708 Views Asked by At

I have a tasklet ValidarSituacaoTasklet that has an property situacao. This tasklet is used in 2 steps in distinct values for situacao. I declared steps as like: and the bean:

<bean id="validarSituacaoTasklet" class="my.package.tasklet.ValidarSituacaoTasklet" scope="step">
</bean>

I have to pass 'situacao' to tasklet . I tried:

<step id="validaSituacaoStep">
    <tasklet ref="validarSituacaoTasklet ">
        <property name="situacao" value="EM_FECHAMENTO"/>
    </tasklet>
</step>

but it does not seem to be the right way to do it.

2

There are 2 best solutions below

2
On BEST ANSWER

Isn't this what you want:

<step id="validaSituacaoStep">
    <tasklet ref="validarSituacaoTasklet "/>
</step>

<bean id="validarSituacaoTasklet" class="my.package.tasklet.ValidarSituacaoTasklet" scope="step">
    <property name="situacao" value="EM_FECHAMENTO"/>
</bean>

UPDATE

Based on the comment left, this should work:

<step id="validaSituacaoStep">
    <tasklet>
        <bean class="my.package.tasklet.ValidarSituacaoTasklet" scope="step">
            <property name="situacao" value="EM_FECHAMENTO"/>
        </bean>
    <tasklet>
</step>
1
On

Have you tried the following ?

<bean id="validarSituacaoTasklet" class="my.package.tasklet.ValidarSituacaoTasklet" scope="step">
       <property name="situacao" ref="daoBean"/>
</bean>

The DAO should be referenced at your bean's definition