Is there a way Smooks could generate a CSV file based on a java instance?
I am looking for something like:
public static void main(String[] args){
Employee emp = new Employee();
emp.setName("abc");
emp.setSalary(12312);
/* set other emp fields */
smooks.filterSource(.....);
}
CSV Output: "abc","12312", .............
Thanks!