[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-11-05 Thread lisaanm
Hi, I came across a performance tip for JSF/JSP pages and would like to confirm it. Here is what they say: JSF/JSP tags should be in one line. Example: BEFORE | h:form |h:inputText value=SEAM Rocks | /h:form | AFTER | h:form h:inputText value=SEAM Rocks /h:form |

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-11-05 Thread [EMAIL PROTECTED]
Have you got a source for that? It seems like FUD to me. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4101757#4101757 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4101757 ___

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-09-26 Thread mgrouch
Here is a link to additional performance discussion thread Topics discussed there include EL performance, impact of reflection, impact of Seam interception, using outjection, impact of Seam lookups for annotations, comparison with JSP

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-09-26 Thread asookazian
I don't think I saw this one yet: don't code heavy logic or db access code (opening db connections are expensive) in getXXX() methods that are called from JSF EL (e.g. methods called from render or value attributes). It's possible that your getXXX() methods may be called several times

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-29 Thread amitev
In shale project there is a component that prevents double submits (shale token). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079011#4079011 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079011

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-29 Thread denis-karpov
About double requests I used for a long time the solution that I have proposed to Gavin http://jira.jboss.org/jira/browse/JBSEAM-183 Gavin by some reasons did not accept it in to Seam. I did not catch exactly why. As I understand it concerns clustering. I do not know about clustering, but

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread amitev
very nice post really View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078591#4078591 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078591 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread amitev
Here is a link for tuning of jboss as http://www.jboss.org/wiki/Wiki.jsp?page=JBossASTuningSliming View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078599#4078599 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078599

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread [EMAIL PROTECTED]
Great post, very informative and I think it will make a valuable addition to the wiki. Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078630#4078630 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078630

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread paradigmza
Nice Will defiantly use this... Great Post. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078652#4078652 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078652 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread mgrouch
Thanks. One more suggestion for General UI Design Tips Prevent user from double submissions by using one of common solutions... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078733#4078733 Reply to the post :

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread [EMAIL PROTECTED]
You can, just hit Edit this page' on the http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSeam page View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078730#4078730 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078730

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread mgrouch
Use 64-bit OS with 64-it JVM is a good one. http://www.jboss.org/wiki/Wiki.jsp?page=JBossASTuningSliming Can we someone add link to this thread from Seam WIKI or make this thread sticky? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078728#4078728

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread mgrouch
I've added WIKI http://wiki.jboss.org/wiki/Wiki.jsp?page=JSFPerformanceTipsInSeamApplications View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078749#4078749 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078749

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread amitev
Seam is using custom faces context factory where creates a semaphor that synchronizes the creaton of faces context for the current session if the current faces contex is not released. But this does not mean that the action method will be called twice. This means that there will not be two

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread mgrouch
Few more tips: Keep style classes names, JavaScript functions names, ID names short. They often repeat in HTML and there are still people with modems. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078752#4078752 Reply to the post :

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread amitev
So, ideas how to prevent double action method invokation? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078791#4078791 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078791 ___

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread mgrouch
So far I have this proposal to prevent double submission http://jira.jboss.org/jira/browse/RF-710 Also it could be used on any Ajax request to prevent concurrent ajax requests when there is ajax activity alread. What do you think? Thanks View the original post :

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-27 Thread chuaky
sorry didn't post properly ... To turn off the Jboss seam logging, is it sufficient to change this setting at \server\default\conf\log4j.xml: |!-- === -- |!-- Setup the Root category -- |!-- === -- | |root | priority

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-27 Thread chuaky
hi mgrouch, Thanks for the compilation. To turn off the Jboss seam logging, it is sufficient to change this setting at \server\default\conf\log4j.xml: !-- === -- !-- Setup the Root category -- !-- === -- appender-ref