Dropwizard:如何以编程方式停止服务

时间:2013-04-13 14:45:17

标签: java dropwizard

要启动该服务,我知道有人使用new MyService().run(args)。怎么阻止它?

我需要在测试中以编程方式启动和停止setUp()tearDown()

5 个答案:

答案 0 :(得分:12)

您可以在新线程中启动服务,一旦测试结束,服务将自动关闭。

然而,从dropwizard 0.6.2开始,dropwizard测试模块完全包含junit rule这个用例(see here)。

此规则的用法如下所示:

Class MyTest {

    @ClassRule
    public static TestRule testRule = new DropwizardServiceRule<MyConfiguration>(MyService.class,
                    Resources.getResource("service.yml").getPath()));

    @Test
    public void someTest(){
    ....

答案 1 :(得分:7)

保留environment变量并将以下方法添加到您的应用程序中:

public void stop() throws Exception {
  environment.getApplicationContext().getServer().stop();
}

现在您可以致电myService.stop()来停止服务器。

答案 2 :(得分:3)

感谢@LiorH这个伟大的建议。

以下是使用 dropwizard-0.6.2 中的DropwizardServiceRule的完整测试类。

首先创建一个用于测试的服务配置:testing-server.yml并将其放在测试的类路径中(例如src\test\resources)。 这样,您可以为要使用的测试服务设置不同的端口:

http:
  port: 7000
  adminPort: 7001

一个简单的测试类,用于检查位置是否有资源&#34; / request&#34;看起来像这样:

class TheServiceTest {

    @ClassRule
    public static DropwizardServiceRule RULE = new DropwizardServiceRule<MyConfiguration>(TheService.class,
            Resources.getResource("testing-server.yml").getPath());

    @Test
    public void
    dropwizard_gets_configured_correctly() throws Exception {
        Client client = new Client();

        ClientResponse response = client.resource(
                String.format("http://localhost:%d/request", RULE.getLocalPort()))
                        .get(ClientResponse.class);

        assertThat(response.getStatus(), is(200));
    }
}

我还添加了导入,以防您不知道要选择哪种实现。

import com.google.common.io.Resources;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.yammer.dropwizard.testing.junit.DropwizardServiceRule;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.TestRule;

import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;

在测试结束时,服务器将正常关闭,因此您无需担心。

答案 3 :(得分:1)

你可以尝试使用org.eclipse.jetty.server.Server的stop()方法,该方法由Dropwizard内部使用。

答案 4 :(得分:0)

或者你在main / constructor中使用这个java特性......:

    // In case jvm shutdown
    Runtime.getRuntime().addShutdownHook(new Thread() {
        @Override
        public void run()
        {
            // what should be closed if forced shudown
            // ....

            LOG.info(String.format("--- End of ShutDownHook (%s) ---", APPLICATION_NAME));
        }
    });