├── .gitignore ├── README.md ├── pom.xml └── src └── main ├── java └── pac │ ├── Application.java │ ├── configuration │ └── WebSocketConfiguration.java │ └── controllers │ └── WebSocketController.java └── resources └── application.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | target/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oril-software/spring-boot-websockets/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oril-software/spring-boot-websockets/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/pac/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oril-software/spring-boot-websockets/HEAD/src/main/java/pac/Application.java -------------------------------------------------------------------------------- /src/main/java/pac/configuration/WebSocketConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oril-software/spring-boot-websockets/HEAD/src/main/java/pac/configuration/WebSocketConfiguration.java -------------------------------------------------------------------------------- /src/main/java/pac/controllers/WebSocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oril-software/spring-boot-websockets/HEAD/src/main/java/pac/controllers/WebSocketController.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8888 --------------------------------------------------------------------------------