No qualifying bean of type ‘java.lang.String‘ available: expected at least 1 bean ...】

 Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'student' defined in file [D:\WorkHome\idea\spring\springall\spring_004_annotation\target\classes\com\bjpowernode\s02\Student.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'java.lang.String' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}

//    public Student() {
//        System.out.println("学生的无参构造方法执行");
//    }

    public Student(String name, int age, School school) {
        this.name = name;
        this.age = age;
        this.school = school;
    }
package com.bjpowernode.s02;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component("student")
public class Student {
    @Value("zhangsan")
    private String name;
    @Value("22")
    private  int age;

    @Autowired
    private School school;

//    public Student() {
//        System.out.println("学生的无参构造方法执行");
//    }
//
//    public Student(String name, int age, School school) {
//        this.name = name;
//        this.age = age;
//        this.school = school;
//    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", school=" + school +
                '}';
    }
}

注解创建对象方式,需要有一个无参构造函数(类中没有写任何的构造函数,默认就是有一个构造函数,如果写了任何一个构造函数,需要手动创建无参构造方法),无需set方法。

import org.springframework.stereotype.Component;

@Component("student")

在idea首次使用该注解时候,有可能不会自动导包,会爆红,不用改其他设置,记得导上面的包。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值