Java SE 上的 Websocket?

Websocket on Java SE?

我想进行实时聊天,我想在服务器端使用 Java SE,在客户端使用 websockets,在客户端使用 html/JS。很难找到与 Java SE 一起使用的 websocket 库(或者我看错了地方)。将 Java SE 用于 websocket 应用程序是否是一个很好的解决方案?

我遵循了这个教程: https://spring.io/guides/gs/messaging-stomp-websocket/ 但进口对我来说效果不佳:

The import org.springframework.boot.autoconfigure cannot be resolved

这是因为 Java 需要 EE 吗?

请提供 mu URL 的一些(有效)tutorial/youtube 视频。我正在使用 Eclipse,但我对它的经验不是很多,所以 "for dummies" 评级的文章会更合适。

我知道这个问题不是很精确,但我很绝望 - 浪费了几天时间,尝试了几个不同的库,但没有任何效果,所以我只需要得到它 运行。

Jetty is a very lightweight library that helps JavaSE developer with all kind of network communication for client and server. Chat applications have been the 'hello world' for such a kind of library. I would recommand any good tutorial on this (just type websocket chat jetty in your favorite browser). If your main goal is to LEARN how it works, instead of copy/paste, I would recommand a simpler tutorial like this one.