[Solved] getting org.apache.jasper.JasperException: java.lang.NullPointerException

Do one thing, the jsps are compiled into java servlets, so you can check the code and see at the appropriate line. The java files are I guess in work directory of tomcat. Line of error org.apache.jsp.index_jsp._jspInit(index_jsp.java:22) Here is the file to look at. index_jsp.java solved getting org.apache.jasper.JasperException: java.lang.NullPointerException

[Solved] Send value from 1 jsp to another jsp

Getting value from the request, you should be putting a value to a request. This code request.getAttribute(“testvalue”); is getting a value, but that code request.setAttribute(“testvalue”, value); is putting it. This is because you want to avoid using the HTTP session. solved Send value from 1 jsp to another jsp