public static void main(String[] args) {
Class clazz = TransferController.class;
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {
System.out.println(method.getName());
}
}
public static void main(String[] args) {
Class clazz = TransferController.class;
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {
System.out.println(method.getName());
}
}