3
votes
How to reduce javax.faces.ViewState in JSF
Have you tried setting the state saving to server? This should only send an id to the client, and keep the full state on the server.
<context-param>
<param-name>java …
1
vote
Xml configuration versus Annotation based configuration
I also think a mix is the best thing, but it also depends on the type of configuration parameters.
I'm working on a Seam project which also uses Spring and I usually deploy it to different developm …
0
votes
Largest Heap used in a managed environment? (.net/java)
I have used from 2GB to 5GB of memory in java, but usually when I get to more than 2GB I really start thinking about memory optimization. Diminishing returns can vary from not optimizing when it's …
1
vote
How do you make REALLY large boolean arrays using Java?
What values do you have in the array?
For a such large number I guess it's going to be a sparse array so maybe it would be best to use a Map/List and just allocate space and store a value for a 1 v …
