I want to send an object of arraylist (in Java) and other parameters as passed by the user to Postman.
Here is my code for controller:
@PostMapping(path = "/listEmpPaidSalariesPaged", produces = "application/json") public List<EmployeeSalaryPayment> listEmpPaidSalariesPaged (long SID, Collection<Student> student, String orderBy, int limit, int offset)
I know you can use RAW data and JSON for objectand x-www-form-urlencoded for parameters, but how to send them together?