Whenever I entered URL for opening a jsp page ..i am getting "The requested resource (/page/form.jsp) is not available." error Page and in my file structure WebContent->WEB-INF ->page->form.jsp
Asked
Active
Viewed 1,170 times
2 Answers
2
Stuff in WEB-INF
is not directly made accessible.
/page/form.jsp
would map to WebContent/page/form.jsp
(outside of WEB-INF
).

Thilo
- 257,207
- 101
- 511
- 656
-
thanks its solved but now i am getting error Page when I click on form.jsp , error is "org.apache.jasper.compiler.Compiler generateClass SEVERE: Javac exception Error starting modern compiler" .Please help – saloni Apr 05 '10 at 06:10
-
It seems an error we can't solve without viewing the code. If you still have that problem it's better to open a new question. – bluish Dec 13 '10 at 13:33
0
The problem here is jsp file shouldn’t be present inside WEB-INF folder move it under web content This will solve your issue

Raphael
- 1,738
- 2
- 27
- 47