Invocations of message listener methods of message-driven beans are not intercepted
-----------------------------------------------------------------------------------
Key: WELD-1038
URL: https://issues.jboss.org/browse/WELD-1038
Project: Weld
Issue Type: Bug
Reporter: Martin Kouba
See chapters "7.2. Container invocations and interception" and "9. Interceptor bindings".
TCK 1.1 test: *org.jboss.jsr299.tck.tests.interceptors.definition.enterprise.jms.MessageDrivenBeanInterceptorInvocationTest.testMessageDrivenBeanMethodIntercepted()*
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
Add an initializationComplete() method to BeanManagerImpl
---------------------------------------------------------
Key: WELD-800
URL: https://issues.jboss.org/browse/WELD-800
Project: Weld
Issue Type: Feature Request
Reporter: Pete Muir
Fix For: 1.2.0.Beta1
BeanManagerImpl is mutable as we need to create the object early in bootstrap and then populate it with beans etc. Currently we don't make it immutable after bootstrap, but this would be good defensive programming, and also allow us to perhaps perform some optimizations on the data structures as we know they are then immutable.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
interceptor binding for java interfaces/methods
-----------------------------------------------
Key: WELD-918
URL: https://issues.jboss.org/browse/WELD-918
Project: Weld
Issue Type: Feature Request
Components: Weld SPI
Affects Versions: 1.1.0.Final
Environment: tomcat6
Reporter: Manuel Hartl
Priority: Minor
- i created an interceptor and marked an java interface class with its binding (or a method of the interface)
- interception does not work on methods of beans, that implement this interface.
should this work? (interceptor binding to java interfaces?)
if yes: it's a bug :)
if no: please update weld documentation
actually, i would like to use in interfaces
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
Anton Lisovenko created WELD-1053:
-------------------------------------
Summary: Event observers not fired when event object is of generic type
Key: WELD-1053
URL: https://issues.jboss.org/browse/WELD-1053
Project: Weld
Issue Type: Bug
Components: Events
Affects Versions: 1.1.0.Final
Environment: Glassfish 3.1
Reporter: Anton Lisovenko
CDI events are not fired when event object is not the compile-defined object, but the generic type. In this case the real object is defined in runtime and this is ok. But the event is not fired.
Classes example and detailed description is available here (will not paste here so that not to make the description enormous): http://stackoverflow.com/questions/8962446/cdi-events-and-generics
In addition to classes defined there will paste the entity classes:
public interface Persistable extends Serializable {
Long getId();
//...
}
and Polis class:
@Entity
public class Polis implements Persistable {
//... fields and setters/getters here
}
Hope this will be enough
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira