All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rebue.wheel.vertx.config.GrpcNettyProperties Maven / Gradle / Ivy

There is a newer version: 3.5.45
Show newest version
package rebue.wheel.vertx.config;

import lombok.Data;

@Data
public class GrpcNettyProperties {

    private ServerProperties server = new ServerProperties();

    @Data
    public static class ServerProperties {
        /**
         * 主机
         */
        private String host;

        /**
         * 主机端口号
         */
        private Integer port;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy