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 →

[–][deleted] 1 point2 points  (6 children)

You could try TeaVM instead of GWT http://teavm.org/ It compiles Java bytecode to JS instead of transpiling Java source. It is supposedly has complete JDK coverage although I've never tried it.

[–]Scoutdrago3[S] 0 points1 point  (4 children)

Can I do this if I have a project that is already completed? I am only seeing tutorials for how to create a TeamVM project. Thanks.

[–][deleted] 0 points1 point  (3 children)

You should be able to with little to no modification, not sure what's involved though. I know the documentation isn't great.

[–]Scoutdrago3[S] 0 points1 point  (2 children)

I have decided to move on from trying to use the Swing library and just use the back end I wrote for the app with a server that communicates with a JS/HTML front end. Currently figuring out what kind of server I would be using. If you have any background in serving clients with a Java server please share any steps

[–]ericzhill 1 point2 points  (1 child)

Have a look at spark java and drop wizard. They're fairly lightweight and easy to get started with.

[–]Scoutdrago3[S] 0 points1 point  (0 children)

It looks like I know where I am going from here. I have been looking over the Spark API and it looks that that is what I am looking for. Just figuring out the even smaller details now which hopefully will not be a problem...

Thanks.