0
votes
Use the serialVersionUID or suppress warnings?
It is good to generate SVUID to every class implementing serializable. The reason is simple. You never know when it will be serialized by you or by some 3rd party. …
1
vote
Java Web Application: How to implement caching techniques?
Your question contains several separate questions together. Let's start slowly. ServletContext is good place where you can store handle to your cache. But you pay by having cache per server instanc …
0
votes
Hibernate + Swing
I prefer session per model update. It helps avoid long-lasting sessions and also it helps minimize total number of session creations.
…
1
vote
How to implement multilanguage in Java/Swing applications?
Well, you had to use ResourceBundles. But if you are setting the componet text property use instead of human readable text the text for RB.getString(). Then if the Matisse …
