I added the description in the PR too: Set activation properties on a per-container basis. This change makes activation properties belongs to a specific container.
<Container id="MDB2" ctype="MESSAGE"> ResourceAdapter MyOTHERResourceAdapter ActivationSpecClass My.Other.ActivationSpecImpl activation.property1 = othervalue1 activation.property2 = othervalue2 </Container> I'll belong just to a container whose the id is MDB2 otherwise will ignore. On Wed, Jul 12, 2017 at 9:55 AM, Jonathan Gallimore <jgallim...@apache.org> wrote: > Hi Otavio > Can you give us a bit of a description about the change, and maybe a > sample config? Just so everyone has some context on the change? > > At first glance, I'd say your testing is missing at least a scenario where > the container activation properties > (mdb.container.[containerID].activation.[property] > = [value]) can be overridden using system properties. Tests around bean > properties overriding container properties would be good too, as would > testing both bean and container properties being overridden by system > properties. > > Cheers > Jon > > On 2017-07-12 12:42 (+0100), Otávio Gonçalves de Santana < > osant...@tomitribe.com> wrote: > > I have created this resource to both master and backported. > > > > > > - https://github.com/apache/tomee/pull/90 > > - https://github.com/apache/tomee/pull/89 > > > > > > On Mon, Jul 10, 2017 at 7:33 AM, Jonathan Gallimore < > > jonathan.gallim...@gmail.com> wrote: > > > > > We have a +1 and a +0 for the backport. I'm pulling the latest code and > > > running the tests. If it looks ok, I'll merge it, while Otavio works > on the > > > container-based config in another patch. Please shout if you have any > > > objections. > > > > > > Otavio, let us know if you need any help or guidance on the container > based > > > settings! > > > > > > Jon > > > > > > On Thu, Jul 6, 2017 at 9:44 PM, Otávio Gonçalves de Santana < > > > osant...@tomitribe.com> wrote: > > > > > > > The problem > > > > > > > > The configuration for MDB activation properties allow any key/value > to be > > > > specified. At present on the 1.7.x branch, the server will fail to > deploy > > > > the application if the activation property is not present on the > > > activation > > > > spec class. > > > > > > > > This becomes painful in a scenario where more than one JMS resource > > > > adapter/MDB container is used, and you wish to configure the > activation > > > > properties of multiple MDBs in one go using the `mdb.activation.` > system > > > > property.. Right now,if an activation property is used that one > provider > > > > uses but other one does, the server will throw an exception. > > > > > > > > For example, given these parameters, > > > > > > > > - > > > > > > > > mdb.activation.ignore=foo > > > > - > > > > > > > > mdb.activation.ignore2=bar > > > > > > > > > > > > if ‘ignore’ and ‘ignore2’ are not present on an MDB’s activation spec > > > > class, the following exception will be thrown. > > > > > > > > Caused by: org.apache.openejb.OpenEJBException: Error deploying > > > > 'Listener'. Exception: class org.apache.openejb.OpenEJBException: > > > Unable > > > > to create activation spec: No setter found for the activation spec > > > > properties: [ignore, ignore2]: Unable to create activation spec: No > > > setter > > > > found for the activation spec properties: [ignore, ignore2] > > > > > > > > at > > > > org.apache.openejb.assembler.classic.Assembler.startEjbs( > > > > Assembler.java:1430) > > > > > > > > at > > > > org.apache.openejb.assembler.classic.Assembler. > > > > createApplication(Assembler.java:796) > > > > > > > > ... 19 more > > > > > > > > Caused by: org.apache.openejb.OpenEJBException: Unable to create > > > > activation > > > > spec: No setter found for the activation spec properties: [ignore, > > > ignore2] > > > > > > > > at > > > > org.apache.openejb.core.mdb.MdbContainer.createActivationSpec( > > > > MdbContainer.java:292) > > > > > > > > at org.apache.openejb.core.mdb.MdbContainer.deploy( > > > > MdbContainer.java:159) > > > > > > > > at > > > > org.apache.openejb.assembler.classic.Assembler.startEjbs( > > > > Assembler.java:1417) > > > > > > > > ... 20 more > > > > > > > > Caused by: java.lang.IllegalArgumentException: No setter found for > the > > > > activation spec properties: [ignore, ignore2] > > > > > > > > at > > > > org.apache.openejb.core.mdb.MdbContainer.createActivationSpec( > > > > MdbContainer.java:262) > > > > > > > > ... 22 more > > > > > > > > > > > > The solution > > > > > > > > The best solution to solve the communication among server is to put > a new > > > > configuration property in TomEE. When this setting is enabled, > overriding > > > > the FailOnUnknownActivationSpec attribute at > > > > org.apache.openejb.core.mdb.MdbContainer class., that will be > disabled > > > by > > > > default to don't break the compatibility, when the setter does not > exist > > > it > > > > put a log and then keep working. > > > > > > > > Basically, my proposal does a backport to 1.7 branch: > > > > https://github.com/apache/tomee/commit/ > 6522f349d0c31d6ec82e66378e0e55 > > > > eded08aec0 > > > > > > > > Path: > > > > > > > > https://patch-diff.githubusercontent.com/raw/ > apache/tomee/pull/86.diff > > > > > > > > > >