with my minimal eclipse java ee configuration:
which eclipse plugin(s) to install in order to get F3 "go to backing bean source" functionality in jsf/xhtmlhow to configure eclipse to run jboss in debug mode using jsf 1.2, richfaces 3.3, seam 2 and ejb3
in jsf/xhtml files i get lots of errors like this:
Multiple annotations found at this line:
- Syntax error in EL
- Expression must be a value expression but is a method
to get rid of these annoying errors, that really aren't errors, do this in eclipse:
window > preferences > web > javaserver faces tools > validation > uncheck Validate EL on Build/Run Validation
then right click on your project and choose Validate. now the errors should be gone.
thanks to BalusC: http://stackoverflow.com/questions/1790749/jsp-el-expression-language-causing-problems-in-eclipse
<%@ page import="javax.servlet.*" %>
ReplyDelete<%@ page import="javax.servlet.http.*" %>
<%@ page import="java.sql.*" %>
the error was,
Multiple annotations found at this line:
- The import javax.servlet cannot be
resolved
- The import javax.servlet cannot be
resolved