https://github.com/stefanbirkner/websocket-example
A tiny WebSocket server built with Jetty 11.
https://github.com/stefanbirkner/websocket-example
jetty websocket websocket-server
Last synced: 3 months ago
JSON representation
A tiny WebSocket server built with Jetty 11.
- Host: GitHub
- URL: https://github.com/stefanbirkner/websocket-example
- Owner: stefanbirkner
- Created: 2021-06-20T19:45:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-20T20:42:54.000Z (almost 4 years ago)
- Last Synced: 2025-01-14T13:54:07.990Z (5 months ago)
- Topics: jetty, websocket, websocket-server
- Language: Java
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jetty WebSocket Server Example
This repository contains a tiny WebSocket server built with Jetty 11. It's
purpose is to show how less you need for a minimal WebSocket server. It's build
with Java 11.## Usage
First you have to download the Jetty libraries. You need to have wget installed
for running the script./scripts/download_libraries.sh
If you don't have wget you can manually download the dependencies listed in
`src/libraries.txt`.Now you can start the WebSocketServer with
java -cp "lib/*" src/WebSocketServer.java