Wow...nice stories. I am considerably newer to the arena.
I had my first around 2005. It was Nokia 6610 i It was able to take VGA pictures.
Nokia was the king of mobiles in India during those times and we used to pay for incoming calls.
Hi Bob,
Personally I prefer Stored procedure/function when there are multiple JDBC calls (output of one query is input to another and calculations involved)
I understand that modification of a List is dangerous while iterating over it, hence ConcurrentModificationException is thrown.
But I do not understand what can be a possible issue if a thread adds elements to the end of the List while another thread is iterating over it.
Dwayne Barsotta wrote:...Why would an organization also use such a large stay off back office languages to provide one site?
To the user it may seem as a single site, but inside there may be thousand of modules.
If a module is already developed and working well in some language, it is beneficial to integrate that (of course after analysis) instead of creating that module from scratch in another language.
From the information provided, it looks like you did not added the JAR into the classpath which contains the class org.glassfish.jersey.FeaturesAndPropertiesies.
Some class in your code is importing a class (say XYZ.java) in xxxxx.jar that you have added.
And XYZ.java is trying to import another class org.glassfish.jersey.FeaturesAndPropertiesies which you did not add in the classpath.
You have to find the JAR containing org.glassfish.jersey.FeaturesAndPropertiesies and add it.
Are you using maven to build your project. Maven ensures all the dependencies are added to classpath.
Provide the full compilation error which you are getting.
If you are using any IDE, try cleaning the project and rebuilding. Sometimes this kind of error occurs in Eclipse.
That is the feature of RequestDispatcher.
By calling forward() method, you actually are telling the server to display the output using the JSP.
You are not telling the server to send new HTTP request to the JSP.
You need to learn more about RequestDispatcher.forward() and response.sendRedirect() methods.