1
vote
2answers
933 views
How can I best connect Seam and GWT in a stateful web application?
We have a web application that was implemented using GWT. What it presents is fetched from a Jboss/Seam server using the remoting mechanism, and this works fine. However, the application is now ext …
0
votes
Get Methods: One vs Many
The first is probably the best in Java, considering it is typesafe (unlike the other). Additionally, for "normal" types, the second solution seems to only provide cumbersome usage for the user. How …
2
votes
Java: Easiest way to merge a release into one jar-file
If you are a maven user, typically the assembly plugin do what you want, or potentially the shade plugin, and in some cases a combination.
With the assembly plugin you put a manifest file i …
0
votes
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
There is a possibility that your IP/host are blocked by the remote host, especially if it thinks you are hitting it too hard.
…
0
votes
Is static metaprogramming possible in Java?
No, generics in Java is purely a way to avoid casting of Object.
…
2
votes
How can I best connect Seam and GWT in a stateful web application?
It turns out that things are "just working" as I hoped. By using Seam's Identity and login mechanism, I can access the current logged in user via Identity.instance().getUsername(); in …
3
votes
Which JMS implementation do you use?
We rely on AMQ (5.1) via the Camel framework, and there haven't been any issues. AMQ 4 was a tad more fishy.
…
5
votes
C++ versus D
It really depends on what your needs are - large scale commercial applications written in D does exist on the server side, and for that D (typically using Tango/Mango) is a perfect …
