On Thu, 17 Jul 2014 12:31:45 -0300, squallmat . <squall...@gmail.com> wrote:

public class ApplicatifDtoEncoder implements ValueEncoder<ApplicatifDto> {

@Inject
IServiceApplicatif serviceApplicatif;
.......

My serviceApplicatif stays null. Is it possible to make @Inject works here ? outside of tapestry pages ?

Injection only happens in Tapestry-controlled classes (pages, components and mixins) or Tapestry-IoC instantiated objects (services or objects created with ObjectLocator.autobuild()). In other words, no injection happens if you get your object by instantiating it yourself (using the 'new' keyword).

--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to