Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a set of Java source code files, how can I compile them into one or more JavaScript files that can be used with hand-crafted JavaScript?

GWT is one option, but every example I've seen so far is aimed at building fancy websites. The simple use case of just converting Java source to Javascript that can be used together with handcrafted JavaScript hasn't been well-documented.

I started a thread on the GWT mailing list on this subject, but opinions seem to be mixed on whether this is even feasible.

One person gave a very useful tip, which was to check out GWT-Exporter. The problem is that neither source code nor documentation is readily available, although there's this and this.

edit: GWT-Exporter source code is here

I've also seen Java2Script. But again, I wasn't able to find examples of how to solve my simple use case.

What's the best approach to this problem? Is there something better I'm missing?

share|improve this question
This question discusses a very similar topic: compiling Java libraries to JavaScript using GWT. stackoverflow.com/questions/3125556/… – Anderson Green Mar 3 at 4:55

2 Answers

When you use GWT, you're basically converting the UI portion into Javascript (and it assumes that you use the UI widgets provided when you write your Java). Only some of the Java libraries are accessible within Javascript. Typically in a GWT application anything that makes heavy use of Java libraries would run on the server side and connect to the Javascript as AJAX (which GWT handles for you). So GWT isn't necessarily converting your full application into Javascript (though it can if you're willing to limit your use of Java libraries and some functionality).

At any rate, if this approach (calling out to Java running on a server from within Javascript) appeals to you, one nice option is DWR, which basically allows your Javascript to directly call methods in Java classes running on the server (without you having to build a web service or other frontend). Not what you asked, I know.

More relevantly, it looks like there's source code for a sample app demonstrating the use of gwt-exporter.

share|improve this answer
This would be for a fairly small, non-gui java library. I hadn't seen DWR, which looks like it could be very useful for larger projects. I Didn't even see the source directory for the gwt-exporter project - thanks for pointing it out. That looks promising. – Rich Apodaca Jan 13 '09 at 19:53
1  
gwt-exporter link is dead – Tim Büthe Sep 20 '12 at 13:12
Here's a new link to the sample app: code.google.com/p/gwt-exporter/source/browse/trunk/samples/src/… – JacobM Dec 6 '12 at 17:03
The new link is also dead. :/ – Anderson Green Mar 3 at 4:34
And here's a new link: code.google.com/p/gwt-exporter/source/browse/samples/… – JacobM Mar 4 at 14:26
show 1 more comment

Also you can use QWT It has Java2JavaScript compiler on the board.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.