Description
See MYFACES-2651.
In particular, there is still a case in which the proposed solution won't work.
Consider the component test 1 slightly modified:
<cc:interface name="test1">
<cc:attribute name="test" required="true" />
</cc:interface>
<cc:implementation>
test1
<t2:test2 test="#
" />
</cc:implementation>
In that case the regex expression looking for cc.attrs will exclude the expression because cc.attrs is preceded by a left parenthesis (as stated in CompositeComponentELUtils).
Changing to
<t2:test2 test="#
" />
will work.
Attachments
Attachments
Issue Links
- is related to
-
MYFACES-2561 StackOverflowError if a composite component implementation uses another composite component
- Closed