#1293 closed defect (fixed)
JSP pages are not thread safe
Reported by: | brucedechant | Owned by: | brucedechant |
---|---|---|---|
Priority: | low | Milestone: | 2.3 |
Component: | General | Version: | 2.2.0 |
Severity: | trivial | Keywords: | |
Cc: | External ID: | 1303042 |
Description
Under load it is possible to have the same session ID used by the cached jsp pages for more than 1 concurrent user which is unexpected behavior and is a result of the jsp pages not being thread safe.
The fix is to add the following line to the jsp pages in order to mark them as not thread safe:
<%@ page isThreadSafe="false" %>
Change History (4)
comment:1 by , 15 years ago
Summary: | Make JSP pages thread safe → JSP pages are not thread safe |
---|
comment:2 by , 15 years ago
Status: | new → assigned |
---|
Note:
See TracTickets
for help on using tickets.
Fixed. sandbox/adsk/2.2gp r4643