I am using Anypoint Studio 6.1 with Mule 3.8.1 and I have a csv file that I have converted to java using Dataweave. Later in the workflow I have to perform a new mapping to the output JSON object using Dataweave.
I have a number of fields to map so wanted to find out if there is there a way of showing the fields in the Java input in the left side input panel so I can use the graphical GUI to map?
The code I am using to convert the csv to java in Dataweave is:
%dw 1.0
%input payload application/csv
%output application/java
---
payload
Thanks