In tag files, we send Tag attribute as
<myTags:Header subTitle="We Take String" />
And use in the Tag File (.tag or .tagx) as :
${subTitle}
In which scope this subTitle attribute is ?
i know the scope of the attribute is tag scope in the
JSP File meaning
in my JSP if i do :
It would be illegal
BUT What i am talking about is the TAG File (and not JSP File)
In TAG File (Here there is no tag)we say
${subTitle}
Now As per normal rules, For This EL statement , the container will start searching subTitle attribute in page, request,session and the application scope? In which of these 4 scopes will it find subTitle attribute?