request.GetParamter not coming in JSP script
Answered
I am new to Intellij IDEA 2016.2. before i used to develop jsp project in netbeans. Now the problem i am facing is Intellij Idea is showing error while using request.GetParameter("t1") and its even not showing suggestion regarding request.GetParamter. help me please.
Please sign in to leave a comment.
Make sure servlet-api.jar is present in the module dependencies (http://www.jetbrains.com/idea/webhelp/configuring-module-dependencies-and-libraries.html). Normally it's added via the application server dependency. If you configure an app server like Tomcat in IDEA and then add it as a runtime dependency to the module, IDE will be able to resolve these methods. Also note the correct case:
request.getParameter("t1");