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.
Eclipse 中是否有任何快捷方式可以将 java 类自动导入到 jsp <%@ page import=""> 标记中,例如 Eclipse 中的 java 类的 Ctrl+shift+o
Ctrl+shift+o在 Eclipse 中对 jsp 文件不起作用,尽管您可以尝试编写
<%@page import="com
然后crtl+space它应该为您提供所有可用的类和包。
还有一件事...
尝试这个:
在您要导入的 JSP 上的任意位置键入YourClassName ,然后点击crtl+space,它将自动添加以下行<%@page import="package.YourClassName"%>