[Design of JBoss Portal] - Re: Simple portal & samples packaging
by julien@jboss.com
I worked on it and now it is back to normal.
Now the portal is its own "portal" module
Samples have been also moved to the "samples" module, I think we can now migrate the existing 2.6 samples which are not using the JBoss Portal api to that module. This module only consumes the portlet API.
The test module is still the same (except it does not contain anymore the simple portal and the samples. I plan here to bundle the testsuite and the tck in the same war file in order to avoid duplication of the same files.
I think also I am going to introduce profiles that should also provide subset of what someone needs when he uses the build, i.e one profile for the simple portal building and one profile for the testsuite&tck building. By default it will build everything.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4133499#4133499
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4133499
16 years, 10 months
[TODO - DEVELOPMENT] - problem with JBoss Seam logger
by aleroch
HI All,
I'm newbie with JBoss Seam and I have problem with logger in my own interceptor class. I use this POJO class for the @AroundInvoke purpose. I declared "@Logger private Log log" field for logger logic but in my interceptor method I always receive null for log instance:(
Why I receive null ?What can be a reason of this wrong behavior ?
Thanks,
Alex
import javax.interceptor.AroundInvoke;
| import javax.interceptor.InvocationContext;
|
| import org.jboss.seam.annotations.Logger;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.log.Log;
|
| @Name("loggedInInterceptor")
| public class LoggedInInterceptor {
|
| @Logger
| private Log log;
|
| @AroundInvoke
| public Object checkLoggedIn(InvocationContext invocation) throws Exception {
| // log is null here :(
| return invocation.proceed();
| }
| }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4133459#4133459
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4133459
16 years, 10 months