Intellij Idea的智能代码建议

时间:2014-08-29 15:03:51

标签: intellij-idea ide

我正在Ubuntu 14.04 LTS上评估Intellij Idea 13.1旗舰版。

我在JSP页面中测试了可能的JSTL标记的代码建议,但Intellij Idea没有给我任何有用的建议(参见截图)。

enter image description here

但我对我的Netbeans IDE做了同样的事情,它给了我很好的建议(见截图)。

enter image description here

这是Intellij Idea的自然行为还是我遗漏了什么?

1 个答案:

答案 0 :(得分:1)

您需要将JSTL库添加到类路径中。您可以从maven存储库下载它。

<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
  <scope>compile</scope>
</dependency>

JSTL