What variables can I get the syntax $ {...} in the Struts tag on the JSP page for?

I am getting a little upset since I cannot figure out which variables I can access with the syntax ${...}in the Struts tag placed on the JSP page.

As an example, I have the following code:

<c:set target="${status.menue}" property="activeMenuePath" value="whatever" />

Where should an object be defined "status.menue"so that it can be accessed with a dollar sign and curly braces. Is this defined in another struts plate or in a form?

+3
source share
1 answer

Source: https://habr.com/ru/post/1742948/


All Articles