postconstruct

Guice call init method after instantinating an object

Is it possible to tell Guice to call some method (i.e. init()) after instantinating an object of given type? I look for functionality similar to @PostConstruct annotation in EJB 3. ...

All @Resource injection before any @PostConstruct again.

JSR-250 says all @Resource annotated methods will be called before the @PostConstruct method.. My question is: Does that mean that all @Resource annotated methods on all beans in a context will be called before any @PostConstruct annotated methods are called? Or in other words can a beans @PostConstruct method be called once its depend...