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.
截至目前,我在班级顶部使用注释“@WebServlet("/mypath")”定义 servlet 路径。我是否可以从另一个 servlet 创建该类的新实例,以便 servlet 位于“/otherservlet/newservlet”?在指定路径时如何创建 servlet 类的实例?
我正在使用 Tomcat 和 HttpServlet 类。
提前致谢。
利用:
@WebServlet(urlPatterns={"/mypath", "/otherservlet/newservlet"})
也可以看看: