I have a web application running on Tomcat.
There are several calculations that need to be done on multiple places in the web application. Can I make those calculations
If you are worried about synchronization and thread safety, don't use static helpers. Create a normal class with your helper methods and create an instance upon servlet request. Keep it simple :-)