We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for <db:select />
/info panel Given Mule xmls are detected When <db:select /> component is used Then Translate it to Equivalent Spring Integration DSL
Example: Detects:
<db:select config-ref="Oracle_Configuration" doc:name="Database" fetchSize="500" maxRows="500"> <db:dynamic-query><![CDATA[SELECT * from students]]></db:dynamic-query> </db:select>
DSL Translation:
.handle((p, h) -> jdbcTemplate.queryForList("SELECT * from students limit 500"))
The text was updated successfully, but these errors were encountered:
f0ecbf2
No branches or pull requests
What needs to be done
Add support for <db:select />
Acceptance Criteria
/info panel
Given
Mule xmls are detected
When
<db:select /> component is used
Then
Translate it to Equivalent Spring Integration DSL
Example:
Detects:
DSL Translation:
Additional Information
The text was updated successfully, but these errors were encountered: