0
votes

I am evaluating Intellij Idea 13.1 Ultimate edition on my Ubuntu 14.04 LTS.

I tested code suggestion in my JSP page for possible JSTL tags, but Intellij Idea does not give me any useful suggestion (see the screenshot).

enter image description here

But I did the same with my Netbeans IDE and it gave me excellent suggestions (see the screenshot).

enter image description here

Is it the natural behaviour of Intellij Idea or I am missing anything?

1

1 Answers

1
votes

You need to add JSTL library to the class path. You can download it from maven repository.

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

JSTL