You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an no xml example of the basic jdbc sample available? Am particularly interested in converting the following part using annotations.
<bean id="personResultMapper" class="org.springframework.integration.samples.jdbc.PersonMapper"/>
<int-jdbc:outbound-gateway data-source="datasource"
request-channel="createPersonRequestChannel"
reply-channel="createPersonReplyChannel"
update="insert into Person (name,gender,dateOfBirth)
values
(:name,:gender,:dateOfBirth)"
query="select * from Person where id = :id"
request-sql-parameter-source-factory="requestSource"
reply-sql-parameter-source-factory="replySource"
row-mapper="personResultMapper"
keys-generated="true"/>
The text was updated successfully, but these errors were encountered:
No, there isn't yet. However the Java and Annotations configuration samples are on our road. Do you need the solution for you instantly or just ask general question?
Is there an no xml example of the basic jdbc sample available? Am particularly interested in converting the following part using annotations.
The text was updated successfully, but these errors were encountered: