Hi. I have some problems with session.
This is a small example:
in jsp i wrote: <c:out value="${sessionScope.amountPayment}"/>
in controller i retrieve amount from db and put in session: 
request.getSession().setAttribute("amountPayment", amount);
it works perfectly, but if i change db field manually and press F5 in
browser, changes doesn't allies in page and I press F5 again i see
changes. in spring config for this controller i wrote some properties
<property name="useExpiresHeader" value="true"/>
<property name="cacheSeconds" value="0"/>
<property name="useCacheControlHeader" value="true"/>
Where is problem? How to fix it? I want see changes when i press F5
once time.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to