1
Guys I’m making a java API to be consumed by Excel. I’m making a bank select by bringing the columns in the right order, but when it arrives in Excel it arrives in a half crazy order.
I also made a method with:
Class.forName("className").getDeclaredMethods.getName();
To get the names of the "get" methods of these entity classes (e.g., Person, Client) and these names are coming out of order as well. They are coming in the same order as the columns in json.
has some way of doing the
Class.forName("className").getDeclaredMethods.getName();
maintaining the order of class methods? and maintain select order in json?