Model
- can we have multiple two @PostConstruct method in one model class ?
and my both method having suppose 15 -15 injcetion . As we know post construct will get invoked only when all injcetion will get resolved . ? so means how it will work all 30 injection ll get resolved and then post constriuct method will be called ?
- defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL(this will make ALL injection optional)
suppose i have to mek some 15 injection optiponal and 15 required . Then i HAVE TO PUT @REQUIRED with each injection ..there is not any gloabl way to do that