java.lang.NoSuchMethodException: com.xxx.Xxx.<init>()
The message means that someone tried to call a constructor without any parameters. Adding a default constructor should solve this problem:
添加一个无参构造器即可
The message means that someone tried to call a constructor without any parameters. Adding a default constructor should solve this problem:
添加一个无参构造器即可