RE:help
by Mathew, Reena (Cognizant)
Hi,
Pls remove me from this loop.
Thanks,
Reena
-----Original Message-----
From: jboss-user-bounces(a)lists.jboss.org
[mailto:jboss-user-bounces@lists.jboss.org] On Behalf Of tdanecito
Sent: Tuesday, July 11, 2006 10:43 AM
To: jboss-user(a)lists.jboss.org
Subject: [jboss-user] [Performance Tuning] - Re: JBoss Performance
Tuning
Okay,
More about networks. For internal users you might want to check out
extended or jumbo frames. The are several white papers on the subject
but the limitation is for internal sites where you have gigabit lan
where the client and server hardware supports. The test results in at
least one paper indicate a 2x perfomance improvement. This will reduce
the CPU loading on the web container and the client.
Regards,
Tony Anecito
adanecito(a)yahoo.com
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956839#3956839
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=395683
9
_______________________________________________
jboss-user mailing list
jboss-user(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user
This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message.
Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email or any action taken in reliance on this e-mail is strictly
prohibited and may be unlawful.
Visit us at http://www.cognizant.com
19 years, 9 months
[JBoss Seam] - Re: how is DataModelSelection populated
by bfo81
You have a List annotated with @DataModel (here: private List hotels). This list is being used as the <h:dataTable>'s value.
Seam is integrated into the JSF lifecycle so well, that every time a link in a table row is clicked, Seam populates the DataModelSelection property (here: private Hotel selectedHotel) with the corresponding object represented in that table row.
Well, and hotelBooking then just accesses this property of hotelSearching.
btw: I would like to know if it's really necessary to pass the hotelSearching bean to the hotelBooking bean. I would prefer passing the selected hotel directly instead of resolving it via hotelSearch.getSelectedHotel(). In my opinion the way it's done now increases coupling of the classes (HotelBooking needs Hotel AND HotelSearching) and that's a bit unaesthetic.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956975#3956975
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956975
19 years, 9 months