更改Dropwizard默认端口

时间:2013-11-17 07:43:56

标签: java rest jersey dropwizard

我在默认端口8080(服务)和8081(管理员)上运行基于Dropwizard的Jersey REST服务,我需要将默认端口更改为不太常用的端口,我无法找到任何信息这样做,有人可以指点我这样做吗?

9 个答案:

答案 0 :(得分:87)

您可以更新yaml配置文件中的端口:

http:
  port: 9000
  adminPort: 9001

有关详细信息,请参阅http://www.dropwizard.io/0.9.2/docs/manual/configuration.html#http

修改

如果您已迁移到Dropwizard 0.7.x,0.8.x,0.9.x,您可以使用以下内容:

server:
  applicationConnectors:
  - type: http 
    port: 9000
  adminConnectors:
  - type: http
    port: 9001

答案 1 :(得分:30)

在命令行中,您可以这样设置它们,在Dropwizard 0.6中:

java -Ddw.http.port=9090 -Ddw.http.adminPort=9091 -jar yourapp.jar server yourconfig.yml

如果使用Dropwizard 0.7,系统属性将以这种方式设置:

java -Ddw.server.applicationConnectors[0].port=9090 -Ddw.server.adminConnectors[0].port=9091 -jar yourapp.jar server yourconfig.yml

我看来,如果你通过系统属性配置端口,你还需要在yml中设置它们(无论如何,系统属性优先)。至少在Dropwizard 0.7中发生了这种情况。 YAML端口配置示例:

server:
  applicationConnectors:
  - type: http
    port: 8090
  adminConnectors:
  - type: http
    port: 8091

如果你没有把这些端口放在YAML中,Dropwizard会抱怨:

Exception in thread "main" java.lang.IllegalArgumentException: Unable to override server.applicationConnectors[0].port; node with index not found.

答案 2 :(得分:13)

这是我为我的测试应用程序(0.7.x,0.8.x,0.9.x)所做的:

public class TestConfiguration extends Configuration {

  public TestConfiguration() {
    super();
    // The following is to make sure it runs with a random port. parallel tests clash otherwise
    ((HttpConnectorFactory) ((DefaultServerFactory) getServerFactory()).getApplicationConnectors().get(0)).setPort(0);
    // this is for admin port
    ((HttpConnectorFactory) ((DefaultServerFactory) getServerFactory()).getAdminConnectors().get(0)).setPort(0);   } }

0提供了一个可用的随机端口。

我知道它不漂亮,但无法以编程方式找到更好的方法。我需要确保端口不会在不同的集成测试之间发生冲突,因为它们并行运行。我相信,为每次测试随机创建一个yml文件会更加丑陋。

哦,这就是你以后如何获得正在运行的端口:

@Override
  public void run(TestConfiguration configuration, Environment environment) throws Exception {
    this.environment = environment;
    // do other stuff if you need to
  }

  public int getPort() {
    return ((AbstractNetworkConnector) environment.getApplicationContext().getServer().getConnectors()[0]).getLocalPort();
  }

答案 3 :(得分:5)

我之前从未使用过dropwizard,只使用jersey创建简单的服务。我决定查看用户手册,并立即找到设置说明。

Dropwizard configuration manual

  

您可以在启动服务时通过传递特殊的Java系统属性来覆盖配置设置。覆盖必须以前缀dw。开头,然后是覆盖配置值的路径。   例如,要覆盖要使用的HTTP端口,您可以像这样启动服务:

java -Ddw.http.port=9090 server my-config.json

适合你吗?

答案 4 :(得分:2)

如果您希望在运行时更改

-Ddw.server.applicationConnectors[0].port=9090  -Ddw.server.adminConnectors[0].port=9091

我已将其与1.0.5版本一起使用

答案 5 :(得分:1)

对于Dropwizard 0.8.0 -

您的YAML文件可以是 -

server:
    type: simple
    connector:
      type: http
      port: 80

如果要从命令行更改端口,

java -Ddw.server.connector.port=9090 -jar yourapp.jar server yourconfig.yml

只有在YAML文件中有条目时,该命令才有效。 DW需要一个可以覆盖的默认值。

答案 6 :(得分:1)

对于Dropwizard 0.6.2,您可以在服务类中以编程方式更改端口。

import com.yammer.dropwizard.config.Configuration;
import com.yammer.dropwizard.config.Bootstrap;
import com.yammer.dropwizard.config.Environment;
import com.yammer.dropwizard.config.HttpConfiguration;
import com.yammer.dropwizard.Service;

public class BlogService extends Service<Configuration> {

public static void main(String[] args) throws Exception {
    new BlogService().run(new String[] {"server"});
}

@Override
public void initialize(Bootstrap<Configuration> bootsrap) {
    bootsrap.setName("blog");
}    


public void run(Configuration configuration, Environment environment) throws Exception {

    HttpConfiguration config = new HttpConfiguration();
    config.setPort(8085);
    config.setAdminPort(8086);
    configuration.setHttpConfiguration(config);
}

}

答案 7 :(得分:0)

我需要设置端口但我无法从命令行设置它们。我最终得到了这个解决方案:

public static void main(String[] args) throws Exception {
    String applicationPort = "9090";
    String adminPort = "9091";

    System.setProperty("dw.server.applicationConnectors[0].port", applicationPort);
    System.setProperty("dw.server.adminConnectors[0].port", adminPort);

    new Main().run(args);
}

这是使用Dropwizard 1.3.0-rc7

完成的

答案 8 :(得分:0)

在您的.yml文件中进行这些更改

server:
  registerDefaultExceptionMappers: false
  applicationConnectors:
    - type: http
      port: 5020
  adminConnectors:
    - type: http
      port: 5022