object « EL « JSP-Servlet Q&A





1. Can't resolve objects using EL    stackoverflow.com

public class Foo extends Properties {
    public String getVal(){
         return "2";
    }
}
In my HttpServlet class' doGet(..) method ...

2. EL questions? object method access    coderanch.com

If you have a bean that has a getValues method then ${something.values} will give you whatever getValues returns. Depending on how this is used it may or may not be useful to you. looking at Map, the values() method returns a collection, so if you pass the result of ${something.values} to a tag that is expecting a Map then you will ...

3. Object Type Argument to EL Functions    coderanch.com