This content has been marked as final.
Show 1 reply
-
1. Re: Flushmode - please HELP
asookazian Aug 11, 2009 1:32 AM (in response to marcelomagno)I haven't used that XML snippet in a Seam app yet, but perhaps it is working and then it's getting overridden later in the code?
Otherwise, that sounds like a bug and you should file a JIRA issue for that...
After the app deploys, there should be a way in the API to check to see what the flushMode setting is.
Something like this:
Manager.instance().getDefaultFlushMode();
try that in a session- or conversation-scoped component and post back what it is...
example:
@Name("test1") @Scope(ScopeType.CONVERSATION) public class test1 { @Logger private Log log; @Create public void test(){ log.info("Manager.instance().getDefaultFlushMode() = "+Manager.instance().getDefaultFlushMode()); } }