Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Maxim Mossienko 
Subsystem
J2EE.JSP 
Affected versions
Fixed in
Fixed in build
Next build 
Fixed in build
8058
  • Submitted by   Eugene Petrenko
    2 years ago (17 Dec 2007 13:01)
  • Updated by   root
    3 weeks ago (17 Jan 2010 19:56)
  • Jira: IDEA-42304
    (history, comments)

IDEA-42304

JSP does not take into accont generic type parameters

0
public class Base<T extends A> { public List<T> getFoo() {...} }
public class Inh extends Base<Bar> { ... }


in JSP I have variable of Inh taken from some other bean. I have <c:ForEach ... construct on getFoo collection (should be of type Bar, not A)
But it does not no anything about T = Bar thus I receive warning of using getter that may not have been defined on the class...

Issue was resolved
Comments (1)
 
History (1)
 
Links
 
Maxim Mossienko
  Maxim Mossienko
17 Dec 2007 13:46
(2 years ago)
#permalink
Please, give complete jsp example