I'm using @PostConstruct and a method named init to do some intialization, but when I do any kind of intialization it gives me the following error.
"An error occurred performing resource injection on managed bean myBean"
Follow is the code:
@PostConstruct
void init() {
myList.add("test");
}