[ 
https://issues.apache.org/jira/browse/CXF-6987?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15405107#comment-15405107
 ] 

ASF GitHub Bot commented on CXF-6987:
-------------------------------------

Github user johnament commented on a diff in the pull request:

    https://github.com/apache/cxf/pull/149#discussion_r73264429
  
    --- Diff: 
integration/cdi/src/main/java/org/apache/cxf/cdi/JAXRSCdiResourceExtension.java 
---
    @@ -179,7 +185,13 @@ private JAXRSServerFactoryBean 
createFactoryInstance(final Application applicati
                     classified.get(Path.class).add(singleton);
                 }
             }
    -        
    +
    +        // now loop through the classes
    +        Set<Class<?>> classes = application.getClasses();
    +        if (!classes.isEmpty()) {
    +            classified.get(Path.class).addAll(loadServices(beanManager, 
classes));
    +            
classified.get(Provider.class).addAll(loadProviders(beanManager, classes));
    --- End diff --
    
    Shoot, thanks.  I actually wrote the code for features, but then removed it 
in my formatting clean up.


> Consider classes attribute of application when using CDI
> --------------------------------------------------------
>
>                 Key: CXF-6987
>                 URL: https://issues.apache.org/jira/browse/CXF-6987
>             Project: CXF
>          Issue Type: Improvement
>    Affects Versions: 3.1.6
>            Reporter: John D. Ament
>
> CXF's CDI integration integration assumes that all of the components included 
> will be CDI beans.  They either need to be defined as singletons, or picked 
> up via scanning.  If singleton is specified, the classes are ignored.
> - It ignores classes defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to