I've made a few additional changes to constructor-based injection that people may be interested in:

1. Annotation processing can now heuristically determine the constructor based on the presence of @Property, @Reference, or @Autowire annotations and does not require @Constructor:

public Foo(@Property String val){

}

2. @Autowire does not require a name so the following is valid:

public Foo(@Autowire String val){

}


We still need to add support for cycle detection and injection of proxies to handle that situation.

Jim




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to