Re: How to use index in EL expression?

Kazuaki Miyauchi <[email protected]> Thu, 25 Sep 2014 18:03:32 +0900
Newsgroups gmane.comp.jakarta.taglibs.user
Message-ID <CAFLYOCFoS7pGTx=_Yr-ePzhUm6WayMqmxi1o3RdHdNOn=es1MQ@mail.gmail.com>
2014-09-24 22:53 GMT+09:00 Stuart Thiel <[email protected]>:
> I really think something in your domain layer should be parsing your
> params and cleanly taking care of this all. You can still provide the
> cleaned up POJOS via attributes, and that makes more sense. If you're
> entirely skipping regular servlets and allowing direct access to JSP
> you can probably use something like
>
> ${paramValues.key[i]}

 Using paramValues, it causes the same problem.
EL cannot be nested, so

<sql:param value="${paramValues.name[${i}]}" /> cannot be compiled.

 I think we need pre-taglibs-taglibs or EL can be nested for resolving this.

 Regards.