我有一個基類,應該在派生類中設置屬性。我必須使用註釋。那可能怎麼樣? 我知道如何做到這一點與XML彈簧配置,但沒有註釋,因爲我要寫在屬性?在派生類中設置基類的屬性,使用彈簧註釋
下面是一些示例代碼:
public class Base {
// This property should be set
private String ultimateProperty;
// ....
}
public class Hi extends Base {
// ultimate property should be "Hi" in this class
// ...
}
public class Bye extends Base {
// ultimate property should be "Bye" in this class
// ...
}
這怎麼可能與註解?
任何理由不只是調用的setter在你的構造函數中? –
'private String ultimateProperty'不是一個屬性,它是一個字段。術語在這些問題中很重要。你的意思是一個領域,還是你的意思是一個屬性(即與getter /和/或setter)? – skaffman