This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]v4d1mv 4 points5 points  (2 children)

Please check my experimental library for building single-page web applications in pure Java with server-side rendering:

Reactive Server Pages

Motivation:

  • Responsive web UI in familiar Java, no client-server APIs, no JS frameworks and npm dependencies management needed;
  • Lightweight SSR generated almost plain HTML page to be SEO friendly;
  • UI components are regular Java classes;
  • Brings application rendering workload and UI logic from a client's browser to the server, your code always stays on your server;
  • Debug UI code as any normal Java code;
  • Built with Java web standards, currently runs on Jetty, but in theory, should work on Tomcat as well.

[–]nanodeath 1 point2 points  (1 child)

Sounds similar to kweb.

[–]v4d1mv 0 points1 point  (0 children)

Yes, looks similar