Export to GitHub

atinject - issue #4

Allow annotationless injection


Posted on Jun 17, 2009 by Happy Monkey

IMHO, JSR 330 should support annotationless injection. The main reason is to to use DI in existing classes that we can't or don't want to change the source and recompile it. By the way, as far as I know, this was one of the main reasons to develop Spring.

Both Spring and Tapestry-IoC support this now, both using external configuration (XML or Java code). The T-IoC difference is that it sets some very well-defined rules for configurationless injection. They can be found in http://tapestry.apache.org/tapestry5.1/tapestry-ioc/ overview.html, section "Dependency Injection". This could be used as a starting point for JSR 330's annotationless injection.

Comment #1

Posted on Jun 17, 2009 by Massive Bear

For what it's worth, Guice supports this also. http://code.google.com/p/google-guice/wiki/CustomInjections

Comment #2

Posted on Jun 17, 2009 by Happy Monkey

It does, but not in an automatic way. As the linked page states, you need to create a TypeListener and a MembersInjector. For example, I was talking about having dependencies injected automatically in DatabaseTransactionLog just by calling bind (TransactionLog.class).to(DatabaseTransactionLog.class), not needing any additional code.

Comment #3

Posted on Jun 17, 2009 by Helpful Bear

Is a language for .bind(..).to(..) in this JSR ?

Comment #4

Posted on Jun 17, 2009 by Happy Monkey

I guess so, as this JSR was expanded to have a configuration API. From the JSR page: "This JSR will standardize:

  • A set of annotations for use on injectable classes
  • A typesafe, user-friendly injector configuration API that provides an integration point for higher level dependency injection configuration approaches

Comment #5

Posted on Jun 17, 2009 by Helpful Bear

Something I'd not spotted in the draft. Thanks for pointing it out.

Comment #6

Posted on Jun 24, 2009 by Quick Hippo

This is probably fodder for part #2 of the spec, i.e not necessarily pertinent to the annotations section, perhaps with the exception of the wording of @Inject which may have to ensure that it does not preclude annotationless injection ...

Comment #7

Posted on Aug 19, 2010 by Swift Giraffe

I'm currently using Tapestry 5 and noticed, it's @Inject or other annotations are not yet JSR-330. Is there any progress on this issue?

Comment #8

Posted on Aug 19, 2010 by Happy Monkey

There's a JIRA for that, but no work was done. Annotations are mostly used for injections in classes controlled by Tapestry (pages, components, mixins), not beans (services), which mostly use injection by constructor without annotations.

Status: New

Labels:
Type-Defect Priority-Medium