Hi,
I’d like to see JSTL supported explicitly in MyEclipse. Currently it treats it like any tag library, which is mildly useful. However, I often make syntax mistakes in my JSTL expression language statements. If MyEclipse caught those, it’d be a big time saver.
For example, If I type the following
<c:out value="${model.property}"/>
I can have the attribute “value” filled in with autocomplete. But it would be really useful if MyEclipse would recognize and auto-complete the expression language. For example, if I forget a closing bracket, it’d be nice for MyEclipse to notify me.
A more complex request is to auto-complete properties of my model. I make this mistake all the time (mistype a property name). If there was some way to let MyEclipse know that the attribute “model” is mapped to a com.example.DataBean, then it could autocomplete and error-check the property names. This would save a lot of debugging error messages when deploying.
WILL