Open rangwea opened 7 years ago
Hi.
I need a HTTPS implement, now I touch a HttpsServerFactory extends AbstractServerFactory. such as:
@JsonTypeName("https") public class HttpsServerFactory extends AbstractServerFactory { @Valid @NotNull private List<ConnectorFactory> applicationConnectors = Lists.newArrayList(new ConnectorFactory[] {HttpsConnectorFactory.application()}); @Valid @NotNull private List<ConnectorFactory> adminConnectors = Lists.newArrayList(new ConnectorFactory[] {HttpsConnectorFactory.admin()}); ... }
then, I modify the kafka-http.yml file , adding the configuration such as:
server: "type": "https"
but, I still got the DefaultServerFactory
Who can help me?
Thanks!
May be you can check HTTPS config https://www.dropwizard.io/1.3.5/docs/manual/configuration.html#man-configuration .
Hi.
I need a HTTPS implement, now I touch a HttpsServerFactory extends AbstractServerFactory. such as:
then, I modify the kafka-http.yml file , adding the configuration such as:
but, I still got the DefaultServerFactory
Who can help me?
Thanks!