JSP Syntax check in editor
Hi,
After I upgraded my jdeveloper from 10g to 11.1.2.3 i saw a lot of syntax errors in JSP editor due to classes not found.
For example my JSP file test.jsp contains:
<%@include file="header_file.jsp"%>
....
<% MyClass.doSth(); %>
...
where header_file.jsp includes line
<%page import="package.MyClass"%>
Then MyClass will be underlined with red line saying "Name MyClass not found."
If I include line
<%page import="package.MyClass"%>
directly in test.jsp file, then it will be fine.
Any configuration am I missing?
Thanks,
Ruiling