新增websocket配置

This commit is contained in:
wanggeng 2021-09-12 23:05:45 +08:00
parent 3e2cd1b36a
commit 684fe584f3

View File

@ -0,0 +1,44 @@
package ink.wgink.properties.websocket;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* @ClassName: WebSocketProperties
* @Description: WebSocket配置
* @Author: wanggeng
* @Date: 2021/9/11 9:51 下午
* @Version: 1.0
*/
@Component
@ConfigurationProperties(prefix = "websocket")
public class WebSocketProperties {
private String url;
private Integer port;
private String context;
public String getUrl() {
return url == null ? "" : url.trim();
}
public void setUrl(String url) {
this.url = url;
}
public Integer getPort() {
return port == null ? 0 : port;
}
public void setPort(Integer port) {
this.port = port;
}
public String getContext() {
return context == null ? "" : context.trim();
}
public void setContext(String context) {
this.context = context;
}
}