Getting EL variable properties in eclipse

I am using the Eclipse / Spring source to edit JSP and EL tags. If I want to check what all the properties of a variable are, is there a way to do this? Or even find out which file generates the passed variable. I think it's something like firebug strings for Javascript where you can select an object and expand it to get its properties.

+5
source share
1 answer

Eclipse does not yet support autocomplete EL. This is not so smart yet. IntelliJ Ultimate Edition supports it, and MyEclipse supports it as though they are both not free (when it comes to JSP / EL development).

JBoss Tools The Eclipse plugin supports it to a certain extent only for implicit / predefined EL objects, but not for custom ones, put it as an attribute in the request / session / application area yourself.

+5
source

All Articles