Superclass has no null constructors but no arguments were given

对着背影说爱祢 提交于 2019-12-03 01:07:41
Maksym Demidas

CGlib has one important restriction: the target class must provide a default constructor.

If you use property-based injection instead of constructor-based injection, the problem will go away.

I just created an empty default constructor to deal with this.

If you are using Lombok in your code, then you can just add the following annotation to get rid of this error:

@NoArgsConstructor
public class SearchController {
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!