[weld-issues] [JBoss JIRA] Commented: (WELD-491) Warn if CDI annotations are placed on classes that are not managed beans

Pete Muir (JIRA) jira-events at lists.jboss.org
Fri Apr 16 06:45:26 EDT 2010


    [ https://jira.jboss.org/jira/browse/WELD-491?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12526133#action_12526133 ] 

Pete Muir commented on WELD-491:
--------------------------------

NB We shouldn't warn if there are CDI annotations on the various non-contextual components listed as they may well have CDI annotations on them, but not be managed beans.

> Warn if CDI annotations are placed on classes that are not managed beans
> ------------------------------------------------------------------------
>
>                 Key: WELD-491
>                 URL: https://jira.jboss.org/jira/browse/WELD-491
>             Project: Weld
>          Issue Type: Feature Request
>          Components: Bootstrap and Metamodel API
>    Affects Versions: 1.0.1.Final
>            Reporter: Nicklas Karlsson
>            Priority: Minor
>             Fix For: 1.0.2.CR1
>
>
> Warn if CDI annotations are placed on beans that fail the check
>       return !Extension.class.isAssignableFrom(clazz.getJavaClass()) &&
>              !(clazz.isAnonymousClass() || (clazz.isMemberClass() && !clazz.isStatic())) &&
>              !Reflections.isParamerterizedTypeWithWildcard(javaClass) && 
>              !servletApiAbstraction.SERVLET_CLASS.isAssignableFrom(javaClass) && 
>              !servletApiAbstraction.FILTER_CLASS.isAssignableFrom(javaClass) && 
>              !servletApiAbstraction.SERVLET_CONTEXT_LISTENER_CLASS.isAssignableFrom(javaClass) && 
>              !servletApiAbstraction.HTTP_SESSION_LISTENER_CLASS.isAssignableFrom(javaClass) && 
>              !servletApiAbstraction.SERVLET_REQUEST_LISTENER_CLASS.isAssignableFrom(javaClass) && 
>              !ejbApiAbstraction.ENTERPRISE_BEAN_CLASS.isAssignableFrom(javaClass) && 
>              !jsfApiAbstraction.UICOMPONENT_CLASS.isAssignableFrom(javaClass) && 
>              (hasSimpleWebBeanConstructor(clazz) || InstantiatorFactory.useInstantiators());
> in AbstractBeanDeployer

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the weld-issues mailing list