I just created this class in maxTest-ejb project and I *still* don't see any
components in the Seam components view after refreshing my project:
| package org.domain.maxtest.session;
|
| import org.jboss.seam.ScopeType;
| import org.jboss.seam.annotations.In;
| import org.jboss.seam.annotations.Logger;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Scope;
| import org.jboss.seam.log.Log;
| import org.jboss.seam.security.Identity;
|
| @Name("testBean")
| @Scope(ScopeType.CONVERSATION)
| public class TestBean {
|
| @Logger Log log;
|
| @In Identity identity;
|
| public void foo(){}
| }
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4216795#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...