我是Dropwizard和Guice的新手,所以我遵循本教程:Dropwizard and Guice Integration。當執行主要方法時,我得到這個錯誤:Guice注射不與Dropwizard
default configuration has an error:
* message can not be found (was null)
所以我猜Guice注射沒有工作。 我有相同的代碼作爲教程,只是我沒有plugins
部分我pom.xml
,我有這條線的主要方法:代替
new ServiceApplication().run(new String[] {"server"});
:
new ServiceApplication().run(args);
我錯過了什麼嗎?有什麼我必須補充嗎?
謝謝。