package com.mycompany.cevent.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(name = "websocket") public class WebSocketConfigProperties { private int port; public int getPort() { return port; } public void setPort(int port) { this.port = port; } }