14:00:04,449 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.servlet.characterEncodingFilter
14:00:04,450 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.web.redirectFilter
14:00:04,451 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.web.exceptionFilter
14:00:04,452 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.web.multipartFilter
14:00:04,452 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.web.identityFilter
14:00:04,453 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter:
 org.jboss.seam.web.rewriteFilter

These are the last set of lines which gets printed post the JBoss SEAM application startup on JBoss 6.

@Name("myStartup")
@Startup
@Scope(APPLICATION)
@BypassInterceptors
public class MyStartup {

    @Create
    public void create() {
        System.out.println("SERVER STARTED SUCCESSFULLY");
    }
}

My intention was to print the above message (on JBoss 6 console) after SeamFilter initializes. How should I do this?

link|improve this question

76% accept rate
feedback

2 Answers

You can try this annotation on a normal component. Remove the @Startup on this component.

@Observer({"org.jboss.seam.postInitialization", "org.jboss.seam.postReInitialization"})
public void create() {
    System.out.println("SERVER STARTED SUCCESSFULLY");
}
link|improve this answer
The above suggestion doesn't seem to work. Is there a way to use the @Instal annotation with a precedence option? I am not sure how to get that to work. – Joe Jun 25 '11 at 4:44
The above suggestion produces a similar output as before and the above line doesn't get printed after the Servlet Filter gets initialized. – Joe Jun 25 '11 at 4:51
I looked at the code public static void endReinitialization() { Contexts.startup(ScopeType.APPLICATION); Events.instance().raiseEvent("org.jboss.seam.postReInitialization"); and you suggestion seems correct, but for some reason didn't work. – Joe Jun 25 '11 at 4:54
which version of seam are you using? You should use the latest version, as it supports JBoss 6 – Shervin Jun 27 '11 at 7:42
If this does not work, try removing @BypassInterceptors in your @Startup component. – Shervin Jun 27 '11 at 8:53
show 5 more comments
feedback

If the idea is only to show some status AFTER all seam messages, there are at least 2 ways:

First is to use a Shervin's solution and suppress org.jboss.seam.servlet.Filter INFO messages in $JBOSS_HOME/server/<your-profile>/conf/jboss-log4j.xml:

<category name="org.jboss.seam.servlet.Filter">
   <priority value="ERROR"/>
</category>

Or implement a filter:

@Scope(APPLICATION)
@Name("com.example.seam.myFilter")
@BypassInterceptors
@Filter(within={"org.jboss.seam.web.rewriteFilter"})
public class MyFilter implements Filter {
    public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException {
        chain.doFilter(request, response);
    }

    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("SERVER STARTED SUCCESSFULLY");
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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