Replies: 2 comments 5 replies
-
Parameters can only be passed as strings. You could use a shell script to handle splitting the items, e.g.:
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Maybe, you can try using expr to generate args. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm configuring a WorkflowTemplate that delivers JobParameters as arguments to Spring Batch application
JobParameters as below
startDate=2024-12-31,java.lang.String endDate=2025-12-31,java.lang.String
I want to bind to individual items in args when there are multiple items. (by splitting
inputs.parameters.additionalArgs
by whitespace) If it goes into a single item, there is a problem that only the first item is recognized by the actual application based on whitespace, so it does not work normally.I need your help!
Beta Was this translation helpful? Give feedback.
All reactions