I have several action classes and some JSP pages. but one JSP page is shared with multiple action classes. The model built in the action class is displayed in the JSP page something like request.getAttribute(DATA_MODEL_VAR).
But I am just curious if there is any synchronization issue for JSP page. The JSP doesn't have isThreadSafe tag. I mean that if it is possible that the model built in A action class can be overriden by the model built in B action class if concurrent multiple requests come in. While I test some load testing, I found something related to synchronization. That's why it makes me curious. It would be great if someone can give me some info or resources.
Thanks.
But I am just curious if there is any synchronization issue for JSP page. The JSP doesn't have isThreadSafe tag. I mean that if it is possible that the model built in A action class can be overriden by the model built in B action class if concurrent multiple requests come in. While I test some load testing, I found something related to synchronization. That's why it makes me curious. It would be great if someone can give me some info or resources.
Thanks.