Java基礎知識

@Overrideide

表示重寫this

編譯器能夠驗證@Override下面的方法名是不是父類中全部的spa

@Autowiredcode

使用@Autowired 註解來實現依賴注入orm

能夠用在屬性、setter方法和構造器上blog

用在屬性上get

@Component("fooFormatter")
public class FooFormatter {
 
    public String format() {
        return "foo";
    }
}
@Component
public class FooService {
     
    @Autowired
    private FooFormatter fooFormatter;
 
}

The annotation can be used directly on properties, therefore eliminating the need for getters and setters:編譯器

In the above example, Spring looks for and injects fooFormatter when FooService is created.it

用在setter上io

public class FooService {
private FooFormatter fooFormatter;
@Autowired
public void setFooFormatter(FooFormatter fooFormatter) { this.fooFormatter = fooFormatter; } }

The @Autowired annotation can be used on setter methods. In the above example, when the annotation is used on the setter method, the setter method is called with the instance of FooFormatter when FooServiceis created:

用在構造器上

public class FooService {
 
    private FooFormatter fooFormatter;
 
    @Autowired
    public FooService(FooFormatter fooFormatter) {
        this.fooFormatter = fooFormatter;
    }
}

The @Autowired annotation can also be used on constructors. In the above example, when the annotation is used on a constructor, an instance of FooFormatter is injected as an argument to the constructor when FooService is created:

 

String...

可變參數

至關於String[]

相關文章
相關標籤/搜索