Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 jsp 和 servlet 很长时间了。但我还没有遇到多线程。可能吗。如果是这样,请有人建议我一些示例程序
JSP 位实际上被编译为 servlet,并且它们无论如何都是多线程的。Servlet 被认为是线程安全的。如果您的 JSP 不是线程安全的,您可以使用页面指令 <%@ page isThreadSafe="false" %>,这样容器使用生成的 servlet 的单线程执行。在这种情况下,容器可以创建 JSP servlet 的多个实例来处理并发请求或使用同步来控制对单个实例的访问。请注意,由于实例化和锁定的开销,可能会影响页面的性能。