Live data from Hacker News

Java in the Browser

jpro.one

1–10 of 113 posts

Re: Java in the Browser

#2
I have looked around the website and I really have no idea what this is. I feel their marketing and doc could do with a bit more explanation if it's intended for devs. Is it like applets in that there is a runtime in the browser? Or more like GWT which compiles Java to Javascript?

Also, the website which is apparently created with the technology, is incredibly slow, at least for me.

And the website doesn't give useful loading indicators, e.g. click a link, nothing happens, or go to the doc section and navigate and lots of empty screens (presumably while the content is loading). No browser loading indicator, nor spinner in the content.

Re: Java in the Browser

#3

I have looked around the website and I really have no idea what this is. I feel their marketing and doc could do with a bit more explanation if it's intended for devs. Is it like applets in that there is a runtime in the browser? Or more like GWT which compiles Java to Javascript? Also, the website which is apparently created with the technology, is incredibly slow, at least for me. And the website doesn't give usefu…

> I have looked around the website and I really have no idea what this is.

Judging from the browser developer tools, something that (very slowly) sends the client stuff via a socket.

Re: Java in the Browser

#4
Interesting. Runs app on the server, does final rendering of the UI's scene graph on the client (within the browser).

It's not clear from skim reading if the client side rendering is implemented with the DOM or a canvas element.

I've always thought it'd be hysterical to use canvas. The whole browser just to hoist a client side frame buffer. X-Windows reinvented.

FWIW, JavaFX is so close to The Correct Answer™. Definitely the best effort thus far. (I haven't used SwiftUI yet.)

Re: Java in the Browser

#5

I have looked around the website and I really have no idea what this is. I feel their marketing and doc could do with a bit more explanation if it's intended for devs. Is it like applets in that there is a runtime in the browser? Or more like GWT which compiles Java to Javascript? Also, the website which is apparently created with the technology, is incredibly slow, at least for me. And the website doesn't give usefu…

The calendar demo I tried was quite slow as well.

Re: Java in the Browser

#10
Site appears to be down, there is an archive here from June 2020:

https://archive.ph/mJDAT

Newer archive on IA from March this year doesn't load anything:

https://web.archive.org/web/20220316200857/https://jpro.one/

However has source code including:

   
So assuming there was a newer site that had some sort of embedded Java thing...

By the sounds of it, it was a demo where the website ran as java on the server, rendering and pushing to the browser in real time? Guessing it couldn't handle HN traffic...

Post reply on HN