I have a project with Spring, JSF and Hibernate.
This project has been developed for 2 months. There are a lot of modules that work.
I created ManagedBean in a new package and made reference to it from a xhtml, but I got the “very common error:”
Target Unreachable, identifier 'someName' resolved to null
So I searched and searched for this error and I realized that my configuration is correct.
I copy my class to another package and now … it works.
Anybody knows why is this?
I know what was the problem!
In my applicationContext.xml, i defined
So my annotation in the class that is in
will not be recognized!
Thanks