You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Jim Ma (JIRA)" <ji...@apache.org> on 2013/01/15 08:06:13 UTC

[jira] [Created] (CXF-4755) StackOverflowError when ASMHelper tries to getClassCode from a parametrized type

Jim Ma created CXF-4755:
---------------------------

             Summary: StackOverflowError when ASMHelper tries to getClassCode from a parametrized type <E extends Enum>
                 Key: CXF-4755
                 URL: https://issues.apache.org/jira/browse/CXF-4755
             Project: CXF
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.7.2, 2.6.5, 2.5.8
            Reporter: Jim Ma
            Assignee: Jim Ma
             Fix For: 2.6.6, 2.7.3, 2.8.0


ASMHelper will throw stack overflow error when starts the server with SEI:

@javax.jws.WebService
public class EnumTest
{
  public <T extends Enum<T>> EnumObject<T> test(EnumObject<T> o)
  {
    return o;
  }
}


public class EnumObject<E extends Enum<E>>
{
  private String name;

  public String getName()
  {
    return name;
  }

  public void setName(String param)
  {
    this.name = param;
  }
}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira