[jboss-jira] [JBoss JIRA] (JBRULES-3621) Declared types : Constructor with more than 255 parameters

JP Chemali (JIRA) jira-events at lists.jboss.org
Fri Sep 7 10:10:32 EDT 2012


     [ https://issues.jboss.org/browse/JBRULES-3621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

JP Chemali updated JBRULES-3621:
--------------------------------

    Description: 
When declaring a class type in a drools file

{code:Java}
declare MyType
 i1:int
 i2:int
 ...
 i256:int
end
{code} 
The generated *MyType* bean contains a constructor with ALL fields parameters, which when they exceed 255, cause an unrecoverable ClassFormatError

Possible solutions:
- Check this limit to skip the constructor generation in org.drools.factmodel.DefaultBeanClassBuilder.generateConstructors()
- Maybe an explicit annotation to disable the behavior for those who don't need it?

  was:
When declaring a class type in a drools file
declare MyType
 i1:int
 i2:int
 ...
 i256:int
end

The generated bean contains a constructor with ALL fields parameters, which when they exceed 255, cause an unrecoverable ClassFormatError

Possible solutions:
- Check this limit to skip the constructor generation in org.drools.factmodel.DefaultBeanClassBuilder.generateConstructors()
- Maybe an explicit annotation to disable the behavior for those who don't need it?


    
> Declared types : Constructor with more than 255 parameters
> ----------------------------------------------------------
>
>                 Key: JBRULES-3621
>                 URL: https://issues.jboss.org/browse/JBRULES-3621
>             Project: Drools
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: drools-core  (expert)
>    Affects Versions: 5.4.0.Final
>            Reporter: JP Chemali
>            Assignee: Mark Proctor
>
> When declaring a class type in a drools file
> {code:Java}
> declare MyType
>  i1:int
>  i2:int
>  ...
>  i256:int
> end
> {code} 
> The generated *MyType* bean contains a constructor with ALL fields parameters, which when they exceed 255, cause an unrecoverable ClassFormatError
> Possible solutions:
> - Check this limit to skip the constructor generation in org.drools.factmodel.DefaultBeanClassBuilder.generateConstructors()
> - Maybe an explicit annotation to disable the behavior for those who don't need it?

--
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


More information about the jboss-jira mailing list