@Component
public class Address
{
@Value("Delhi")
private String city;
public String getCity()
{
return city;
}
}
上面的代码在类中没有任何setter方法或参数化构造函数,而city是类的私有成员,所以除了硬编码之外它没有和初始化城市的方法.当我运行代码bean时,使用值“Delhi”进行实例化并打印出来.有人可以解释一下如何在不调用setter或构造函数的情况下设置私有成员的值的注释吗?
最佳答案
Spring为此使用反射.无论是私人会员还是公共会员.请参考简单的说明here