学习springboot使用的时候编译不通过,报了这个错误

Could not autowire. No beans of ‘String’ type found. Checks autowiring
problems in a bean class.

错误截图:
Could not autowire. No beans of String type found. Checks autowiring problems in a bean class
刚开始一直以为是哪里配置错了,始终找不到是哪里的问题。
这个错其实是因为我定义了一个有参的构造器,却没有再显示定义一个无参的构造器,才报的这个错误。
解决办法:加上无参构造器。

另外:如果是是使用lombok,只加@AllArgsConstructor这个注解,编译没有错,但是工程跑不起来,控制台打印的信息是这样的:

Description: Parameter 0 of constructor in
com.hwx.springboot1.bean.User required a bean of type
‘java.lang.String’ that could not be found. Action: Consider defining
a bean of type ‘java.lang.String’ in your configuration.

其实是同一个错误,加上@NoArgsConstructor注解即可

相关文章:

  • 2021-06-29
  • 2021-08-11
  • 2021-04-25
  • 2021-08-27
  • 2021-06-04
猜你喜欢
  • 2021-08-02
  • 2021-04-20
  • 2021-07-12
  • 2022-12-23
  • 2021-04-12
  • 2021-11-22
  • 2021-05-31
相关资源
相似解决方案