[jbosstools-issues] [JBoss JIRA] (JBIDE-18345) PartialBeanBinding validation in annotated mode

Rastislav Wagner (JIRA) issues at jboss.org
Tue Sep 16 05:09:04 EDT 2014


Rastislav Wagner created JBIDE-18345:
----------------------------------------

             Summary: PartialBeanBinding validation in annotated mode
                 Key: JBIDE-18345
                 URL: https://issues.jboss.org/browse/JBIDE-18345
             Project: Tools (JBoss Tools)
          Issue Type: Enhancement
          Components: cdi-extensions
    Affects Versions: 4.2.0.CR1
            Reporter: Rastislav Wagner


Create CDI 1.1 project with deltaspike libs (and PartialBean module).

Create Binding Annotation

{code}
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.apache.deltaspike.partialbean.api.PartialBeanBinding;

@PartialBeanBinding
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExamplePartialBeanBinding {

}
{code}

Create Partial Bean interface annotated with Binding Annotation

{code}
import javax.enterprise.context.ApplicationScoped;

@ApplicationScoped
@ExamplePartialBeanBinding
public interface ExamplePartialBeanInterface {
    String sayHello(String hello);
}
{code}

In this case a warning saying "Partial bean %className% should have an invocation handler for binding annotation %annotationName%" should be displayed. However because bean-discovery-mode is set to annotated and our Binding Annotation doesn't specify scope (we dont create Binding Annotations with scope right ?) no warning is displayed. So we need to change bean-discovery-mode or add scope to our Binding Annotation. It would be nice to have the warning displayed even with "default" settings. WDYT ?




--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the jbosstools-issues mailing list