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

com.github.zhengframework.web.WebConfig Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.github.zhengframework.web;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.github.zhengframework.configuration.ConfigurationDefine;
import com.github.zhengframework.configuration.annotation.ConfigurationInfo;
import java.util.HashMap;
import java.util.Map;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;

@ToString
@Data
@NoArgsConstructor
@ConfigurationInfo(prefix = "zheng.web")
public class WebConfig implements ConfigurationDefine {

  private String contextPath = "/";

  private String webSocketPath = "/ws";

  private int port = 8080;

  private boolean http2 = false;

  private boolean ssl = false;

  private int sslPort = 8443;

  private String keyStoreType;

  private String keyStorePath;

  private String keyStorePassword;

  private String trustStoreType;

  private String trustStorePath;

  private String trustStorePassword;

  @JsonIgnore
  private Map properties = new HashMap<>();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy