Reputation: 9
In my application i have a JSP file named "Transferdatanew.jsp". When I am going to use my application, I am getting an exception as numberformatexception
, but when I clicked there I am getting a message as "source not found for org.apache.jsp._Transferdatanew".
What does this mean? Please help me. I am new to Java.
Upvotes: 0
Views: 592
Reputation: 8526
Its pretty clear that there is a problem in the 'Transferdatanew.jsp'. I'd venture so far as to say that the jsp is receiving an input that is not in the numerical format it expects.
You should not be worried about 'Source not found exception' unless you want to see the source .... which will be in one of the $TOMCAT_HOME/work subfolders.
Upvotes: 1