[Webwork-user] Action being called too many times
Brought to you by:
baldree,
rickardoberg
From: G.L. G. <ga...@gr...> - 2002-07-13 21:13:13
|
I've got a session bean that's being called multiple times from my = getProductList() method in a class extended from ActionSupport My = getProductList() method does a lookup to this session bean and then = calls it. The problem is the session bean is being called multiple times (seven = times) and so it this method in my ActionSupport class, and the only = thing I can think of is because I have the following references (and = only these) in my velocity template page ... #foreach ( $key in $productList.keySet() ) <option value=3D"$productList.get($key)">$productList.get($key) #end Is this behavior correct or would anyone know the reason for it. Any help much appreciated. |