Search Results

9
votes
11answers
411 views

Named blocks to limit variable scope: good idea?

For years, I've been using named blocks to limit the scope of temporary variables. I've never seen this done anywhere else, which makes me wonder if this is a bad idea. Especially since the Eclip …
0
votes

Writing post data from one java servlet to another

Could you be more specific about the kind of error you're seeing? …
3
votes

Java Web Deployment: build code, or deploy .war?

I'm firmly against building on the production box, because it means you're using a different build than you tested with. It also means every deployment machine has a different JAR/WAR file. If no …
2
votes

Using “final” modifier whenever applicable in java

Final should always be used for constants. It's even useful for short-lived variables (within a single method) when the rules for defining the variable are complicated. For example: …