JSP impilcit objects intellisense problem?

When I put dot after out, response, request (these are JSP impilicit objects), IDEA should show intellisense list.

And I type

]]>


IDEA doesn't understand println().

Or I miss something?



Attachment(s):
JspImplicitObjects.gif
0
2 comments

Please, setup application server (it contains class definitions for out)

t800t8 wrote:

When I put dot after out, response, request (these are JSP impilicit objects), IDEA should show intellisense list.

And I type

     <%
>         out.println("aaa");
>     %>
> ]]>


IDEA doesn't understand println().

Or I miss something?


------------------------------------------------------------------------



--
Best regards,
Maxim Mossienko
IntelliJ Labs / JetBrains Inc.
http://www.intellij.com
"Develop with pleasure!"

0

Fixed it with your help.

But why I can auto-complete JSP implicit objects (example, I type "ou" then press Ctrl + Space, it will become "out") but can't do the same with their methods without setup application server? Seem that Eclipse works this way.

I asked myself and have an answer: you want to get the "true" methods and attributes of them because maybe they will changed in next JSP/servlet specification.

IntelliJ IDEA is really intelligent. :)

0

Please sign in to leave a comment.