views:

112

answers:

2

I'm using Eclipse/Spring source to edit JSP tags and EL. 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 is generating the variable that's passed in. I'm thinking something along the lines of firebug for Javascript, where you can select an object and drill-down to get it's properties.

A: 

I think this is not possible. The plugin should be too clever in order to analyze all your methods and all your model maps your return.

Bozho
A: 

Eclipse doesn't support EL autocomplete yet. It isn't that smart yet. IntelliJ Ultimate Edition supports it and MyEclipse supports it as well, but both are not free (when talking about JSP/EL development).

The JBoss Tools Eclipse plugin supports it to a certain degree, only for implicit/predefinied EL objects, but not for custom ones which you've put as attribute in request/session/application scope yourself.

BalusC