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.
为什么jspService()方法不能被覆盖,在哪里 asjspInit()和jspDestroy()可以被覆盖?
jspService()
jspInit()
jspDestroy()
这个论坛帖子解释了为什么你不能覆盖 jspService()。
基本上,如果您试图覆盖 jspService 方法,JSP 编译器生成的代码最终会得到该方法的两个副本:一个是您编写的,另一个是由编译器创建的。这将导致 Java 编译错误。