10
votes
8answers
444 views
Usable JSP/Servlet Hosting
Has anyone found a usable JSP/Servlet hosting provider? Lunarpages offers JSP as an option, but the server they use (Resin 2.1) is poorly implemented, out of date, cantankerous, and is always runni …
1
vote
Can anyone recommend a simple Java logging framework?
You may find this article to be of interest:
http://java.sys-con.com/node/44698
In particular, it shows how to config …
2
votes
Any good recommendations for MP3/Sound libraries for java?
JLayer should do everything you need. It's not dead, it's just stable. The author finished it up quite a long time ago and the MP3 format has not seen much change since. You'll notice that his …
2
votes
What are the benefits of the Iterator interface in Java?
Because you may be iterating over something that's not a data structure. Let's say I have a networked application that pulls results from a server. I can return an Iterator wrapper around those res …
4
votes
Has anyone migrated from Struts 1 to another web framework?
Sure. Moving from Struts to an AJAX framework is a very liberating experience. (Though we used JSON rather than XML. Much easier to parse.) However, you need to be aware that it's effectively a ful …
1
vote
Can anyone explain thread monitors and wait?
If the object does not own the object monitor when it calls Object.wait(), it will not be able to access the object to setup a notify listener until the the monitor is released. Instead, it will be …
0
votes
Usable JSP/Servlet Hosting
FYI, these days I use Google App Engine for hosting. They provide a number of Servlet/JSP features at a low cost and with high scalability. Thei …
