spring注入在有常量的情况下使用@AllArgsConstructor操作

目录

  • spring注入在有常量的情况下使用@AllArgsConstructor
    • 会报错
    • 解决方案
  • @AllArgsConstructor注解作用

    spring注入在有常量的情况下使用@AllArgsConstructor spring注入在有常量的情况下使用@AllArgsConstructor操作
    文章图片


    会报错
    如下所示:
    Consider defining a bean of type 'java.lang.String' in your configuration.
    这是github上作者的回答
    spring注入在有常量的情况下使用@AllArgsConstructor操作
    文章图片

    大致意思是,他们不用spring.....

    解决方案
    使用@RequiredArgsConstructor(onConstructor_ = @Autowired)注解
    spring注入在有常量的情况下使用@AllArgsConstructor操作
    文章图片

    需要被biud的属性,添加final修饰符,至于为什么可以看lombok官网
    spring注入在有常量的情况下使用@AllArgsConstructor操作
    文章图片


    @AllArgsConstructor注解作用 【spring注入在有常量的情况下使用@AllArgsConstructor操作】这是一个lombok中的注解,写在类上
    @AllArgsConstructorpublic class ShopUser{}

    @Data这个注解是自动添加各属性的get,set方法,而@AllArgsConstructor这个注解是自动添加类的构造函数
    以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

      推荐阅读