Spring 只會在實例化 bean 之后或?qū)嵗瘯r注入依賴項(取決于是否使用構(gòu)造函數(shù)注入)。MyService但是,您現(xiàn)在在初始化 bean 之前發(fā)生的字段初始化期間訪問依賴項。因此,它無法MyService在字段初始化期間訪問,因為它尚未注入。您可以通過更改為routingKeys同時在構(gòu)造函數(shù)中使用構(gòu)造函數(shù)注入和初始化來簡單地修復(fù)它:@Configurationpublic class RabbitConfiguration { private List<String> routingKeys ; private MyService myService; @Autowired public RabbitConfiguration(MyService myService){ this.myService = myService this.routingKeys = writeRoutingKeys(); } private List<String> writeRoutingKeys() { return myService.getRoutingKeys(); } }或者簡單地說:@Autowiredpublic RabbitConfiguration(MyService myService){ this.myService = myService this.routingKeys = myService.getRoutingKeys();}我正在開發(fā)一個字典 android 應(yīng)用程序。我在應(yīng)用程序中使用數(shù)據(jù)庫來獲取單詞及其含義。SQLiteDatabase在課堂上使用靜態(tài)Application并在某些活動和課程中使用它是一種好方法嗎?public class App extends Application { public static SQLiteDatabase database; @Override public void onCreate() { super.onCreate(); database = SQLiteDatabase.openOrCreateDatabase( Constants.MAIN_DB_PATH, null); }并以這種方式使用它:public class MainActivity extends AppCompatActivity { ... @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ... Cursor cursor = App.database.rawQuery(query, null); ... }}和:public class MyClass{ ... public MyClass() { ... Cursor cursor = App.database.rawQuery(query, null); ... }}
1 回答

隔江千里
TA貢獻(xiàn)1906條經(jīng)驗 獲得超10個贊
由于您只需要此對象的一個實例,因此這是一種可行的方法。您可以定義數(shù)據(jù)庫:
public class Database{
private static SQLiteDatabase localDatabase = null;
private Database(){}
public static SQLiteDatabase getLocalDatabase(){
if (localDatabase == null){
localDatabase = SQLiteDatabase.openOrCreateDatabase(...);
}
return localDatabase;
}
}
在您的活動代碼中,您可以像這樣使用它:
Database.getLocalDatabase().rawQuery(...);
編輯:要應(yīng)用單例模式的所有規(guī)則,還要添加一個私有和空的構(gòu)造函數(shù),這樣您就不會意外地實例化對象。
添加回答
舉報
0/150
提交
取消