Summary:
When completing the name and property attributes to the taglibs in a webpage (in my particular case, struts) IS (I’m asking) it possible to provide autocomplete on previously defined beans? It works currently when inside of a scriplet, (completes for the defined beans) but I’m wondering if it would complete when I’m doing something like:
<bean:define id="person" name="sessionPerson" scope="session" type="com.test.Person"/>
<logic:notEmpty name="|
and be able to offer “person” as a completion? Of course, the next step is to offer property completions as well since the IDE would be aware of the type of the bean.
This is just something to be added to the “it would be nice IF” list, not priority by any means.