构造器注入(constructor injection)
public class Product {
private Category category;
public Product(Category category) {
this.category = category;
}
}
Set 注入
public class Product {
private Category category;
public void setCategory(Category category) {
this.category = category;
}
}