XMLファイル&に次のクエリを記述しました。Javaコードからcreated_dateの動的値を渡したいと思います。私は春のバッチプログラムを作成しています。だからそれを行う方法?Springバッチで動的変数をXMLに渡す方法
<property name="dataSource" ref="dataSource" />
<property name="sql"
value="SELECT `txn`.`id`,
`txn`.`sender_id`,
`txn`.`beneficiary_id`,
`txn`.`amount`,
`txn`.`pay_mode_master_id`,
`txn`.`status`,
`txn`.`reference_number`,
`txn`.`created_by`,
`txn`.`created_date`,
`txn`.`updated_by`,
`txn`.`updated_date`,
`txn`.`source_currency_master_id`,
`txn`.`dest_currency_master_id`,
`txn`.`fees`,
`txn`.`exchange_rate`,
`txn`.`total_amount`,
`txn`.`recipient_gets`,
`txn`.`from_country`,
`txn`.`to_country`,
`txn`.`other_purpose`,
`txn`.`transaction_purpose_id`,
`txn`.`sender_account_id`,
`txn`.`transaction_number`,
`txn`.`source_region`,
`txn`.`error`,
`txn`.`corridor_id`,
`txn`.`promo_code`,
`txn`.`receiver_id`,
`txn`.`error_code`
FROM `remittance`.`transaction_master` txn where txn.created_date >= '2017-02-09 00:00:00' AND txn.created_date <='2017-02-09 23:59:59';" />
<property name="rowMapper">
<bean class="com.websystique.springbatch.ExamResultRowMapper" />
</property>
</bean>
しかし、私は全体のクエリをXMLに入れたいと思いますが、パラメータはJavaコードから動的に渡され、バネバッチジョブのためにそのクエリを使用します。 – nIKHIL