One thing I like about JSP is include mechanism. In JSP I can simply write:
<jsp:include page='/widget/foo-widget?param=value' />
It works very well when I have some sort of widget and I want incude it on some other page.
The other day I think, It would be nice if include doesn't block thread control, so if I have several includes, they could be processed in parallel. Is there any way to do it in JSP?