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 文件访问另一个 JSP 文件,它的作用类似于 java 类,这曾经在 JRun 服务器中正常工作。现在我正在迁移到 Tomcat 服务器,这就是我得到的。我该如何解决这样的问题?
这是另一个.jsp 文件,可从常规 jsp 文件访问:
<%! public class ElemSetup { } %>
您可以通过声明包来解决此类问题。严重的是,强烈建议不要使用默认包!
好吧,在 JSP 中声明一个类是被禁止的。请改用常规.java文件。
.java