After struggling around the whole weekend with setting up my sample so that it works more or less together with Eclipse, Maven and Geronimo I found just by chance the problem. In the dependencies of my web project I added javaee-web-api with scope ‘provided’ but because of a miss configuration this jar file was also packed to the war (resp. ear). This was definitely the cause of the problem (I made a small test with a separate web project with and without having this jar in the war file).
So everything works fine. Also when declaring the bean with annotations. -------- Georg jeffche wrote: > > The problem was also documented at > > https://cwiki.apache.org/GMOxDOC30/development-issues.html#Developmentissues-Managedbeansnotfoundexceptionswhenusingannotation > > Jeff > > On Sat, Aug 6, 2011 at 10:15 PM, Ivan <[email protected]> wrote: > >> Maybe it is the same issue with >> http://mail-archives.apache.org/mod_mbox/geronimo-dev/201108.mbox/%3ccals1ypbztvkmjk2rhiwujdqinpawyb-ftkh_rimrvkct7gl...@mail.gmail.com%3E >> >> 2011/8/6 horowitzathome <[email protected]> >> >>> I have made a simple Dynamic Web Project with Eclipse and Maven. I also >>> added >>> a managed bean which is defined like that: >>> >>> @ManagedBean(name = "testBean") >>> @SessionScoped >>> public class TestBean { >>> >>> When I try to access testBean from xhtml, I get an error that the bean >>> is >>> unknown. A workaround is to define the bean in faces-config.xml as a >>> managed bean but defining the bean with annotations should also work. >>> >>> I do not know, maybe the whole problem is related to my last post, see >>> 'javax.faces.* classes do not show up with Geronimo 3 runtime in >>> Eclipse': >>> >>> http://apache-geronimo.328035.n3.nabble.com/javax-faces-classes-do-not-show-up-with-Geronimo-3-runtime-in-Eclipse-td3229637.html >>> >>> http://apache-geronimo.328035.n3.nabble.com/javax-faces-classes-do-not-show-up-with-Geronimo-3-runtime-in-Eclipse-td3229637.html >>> >>> Currently I am using geronimo-tomcat7-javaee6-3.0-20110805.060355-254. >>> >>> Best Regards, >>> Georg >>> >>> -- >>> View this message in context: >>> http://apache-geronimo.328035.n3.nabble.com/Managed-bean-unknown-when-using-ManagedBean-annotation-with-Geronimo-V3-tp3229662p3229662.html >>> Sent from the Users mailing list archive at Nabble.com. >>> >> >> >> >> -- >> Ivan >> > -- View this message in context: http://apache-geronimo.328035.n3.nabble.com/Managed-bean-unknown-when-using-ManagedBean-annotation-with-Geronimo-V3-tp3229662p3235333.html Sent from the Users mailing list archive at Nabble.com.
