[jboss-jira] [JBoss JIRA] (WFLY-3456) Can not call method with generic type parameter with null value
Marcel Neuwohner (JIRA)
issues at jboss.org
Thu Jun 5 09:38:16 EDT 2014
[ https://issues.jboss.org/browse/WFLY-3456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Marcel Neuwohner updated WFLY-3456:
-----------------------------------
Description:
If you call a method with a generic type parameter from EL with null as parameter value you get
{code}
javax.el.MethodNotFoundException
Unable to find unambiguous method: SimpleOrderHandler$Proxy$_$$_WeldClientProxy.getLastUpdate(null)
at
javax.el.Util.findWrapper(Util.java:322)
javax.el.Util.findMethod(Util.java:203)
javax.el.ELUtil.findMethod(ELUtil.java:288)
javax.el.BeanELResolver.invoke(BeanELResolver.java:527)
javax.el.CompositeELResolver.invoke(CompositeELResolver.java:256)
com.sun.el.parser.AstValue.getValue(AstValue.java:136)
com.sun.el.parser.AstValue.getValue(AstValue.java:204)
com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226)
org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
{code}
was:
If you call a method with a generic type parameter from EL with null as parameter value you get
javax.el.MethodNotFoundException
Unable to find unambiguous method: SimpleOrderHandler$Proxy$_$$_WeldClientProxy.getLastUpdate(null)
at
javax.el.Util.findWrapper(Util.java:322)
javax.el.Util.findMethod(Util.java:203)
javax.el.ELUtil.findMethod(ELUtil.java:288)
javax.el.BeanELResolver.invoke(BeanELResolver.java:527)
javax.el.CompositeELResolver.invoke(CompositeELResolver.java:256)
com.sun.el.parser.AstValue.getValue(AstValue.java:136)
com.sun.el.parser.AstValue.getValue(AstValue.java:204)
com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226)
org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
Steps to Reproduce:
Minimal example to reproduce the issue:
Failing expression: #{simpleOrderHandler.getLastUpdate(null)}
{code:java}
import java.util.Date;
public interface SimpleDataTableHandler<T> {
public Date getLastUpdate(T item);
}
import java.util.Date;
import javax.enterprise.inject.Model;
@Model
public class SimpleOrderHandler implements SimpleDataTableHandler<SimpleOrder> {
@Override
public Date getLastUpdate(SimpleOrder item) {
return new Date();
}
}
{code}
was:
Minimal example to reproduce the issue:
Failing expression: #{simpleOrderHandler.getLastUpdate(null)}
import java.util.Date;
public interface SimpleDataTableHandler<T> {
public Date getLastUpdate(T item);
}
import java.util.Date;
import javax.enterprise.inject.Model;
@Model
public class SimpleOrderHandler implements SimpleDataTableHandler<SimpleOrder> {
@Override
public Date getLastUpdate(SimpleOrder item) {
return new Date();
}
}
> Can not call method with generic type parameter with null value
> ---------------------------------------------------------------
>
> Key: WFLY-3456
> URL: https://issues.jboss.org/browse/WFLY-3456
> Project: WildFly
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: JSF
> Affects Versions: 8.1.0.Final
> Reporter: Marcel Neuwohner
> Assignee: Farah Juma
>
> If you call a method with a generic type parameter from EL with null as parameter value you get
> {code}
> javax.el.MethodNotFoundException
> Unable to find unambiguous method: SimpleOrderHandler$Proxy$_$$_WeldClientProxy.getLastUpdate(null)
> at
> javax.el.Util.findWrapper(Util.java:322)
> javax.el.Util.findMethod(Util.java:203)
> javax.el.ELUtil.findMethod(ELUtil.java:288)
> javax.el.BeanELResolver.invoke(BeanELResolver.java:527)
> javax.el.CompositeELResolver.invoke(CompositeELResolver.java:256)
> com.sun.el.parser.AstValue.getValue(AstValue.java:136)
> com.sun.el.parser.AstValue.getValue(AstValue.java:204)
> com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226)
> org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
> com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
More information about the jboss-jira
mailing list