jstl 中是否可以提供 Eclipse 内容辅助
我的 jsp 视图中的以下场景是否可以提供内容辅助?
List products;
products= dao.getProductList;
request.setAttribute("products", products);
<c:forEach var="product" items="${products}">
<c:out value="${product. <-- is content assist here on the product model javabean??
我想这并不是因为 Eclipse 如何知道我正在处理 Product.java
?
Is content assist possible in the follow scenerio in my jsp view?
List products;
products= dao.getProductList;
request.setAttribute("products", products);
<c:forEach var="product" items="${products}">
<c:out value="${product. <-- is content assist here on the product model javabean??
I kind of think it is not because how would Eclipse know that I am working on Product.java
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,这通常是不可能的。 JSP EL 是一种动态语言,Eclipse 没有执行自动完成所需的信息。
No, this generally isn't possible. JSP EL is a dynamic language, Eclipse doesn't have the information it needs to perform auto-complete.
你可以试试我的插件。它位于:http://fast-code.sourceforge.net/。它不像内容辅助那么好用,但您可以在 jsp 中打印任何类的字段名称,而无需打开类。
You can try my plugin. It is available at : http://fast-code.sourceforge.net/. It is not as sweet as content assist but you can print field name of any class in a jsp without opening the class.
可以通过将 jstl-api.jar 添加到类路径来启用自动完成。
The autocomplete can be enabled by adding jstl-api.jar to the classpath.