Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
}
share|improve this question
3  
full stacktrace would be helpful – Jigar Joshi Jan 26 '11 at 12:16

1 Answer

From this little amount of information you provided, I can only guess this exception occured because you didn't initialize myList properly.

Something like List<String> myList = new ArrayList<String>(); must have been called before myList.add("test").

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.