在dropwizard中,访问应用程序中任何位置的配置对象的最佳方法是什么

时间:2019-02-13 05:56:06

标签: dropwizard

在dropwizard中,有哪些选项可以使配置对象可以在应用程序中访问(而不仅仅是资源对象)?谢谢。

public class TestConfig extends Configuration {
    @JsonProperty String test;
}

public class HelloWorldApplication extends Application<TestConfig> {
    @Override
    public void run(TestConfig configuration, Environment environment) {
    }
}

0 个答案:

没有答案