[jboss-jira] [JBoss JIRA] (WFLY-3393) JSP 2 different tags called with same tag instance
Stuart Douglas (JIRA)
issues at jboss.org
Tue Jul 8 17:31:24 EDT 2014
[ https://issues.jboss.org/browse/WFLY-3393?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12983308#comment-12983308 ]
Stuart Douglas commented on WFLY-3393:
--------------------------------------
I think this is because of tag pooling. Try disabling it by changing the jsp-config element in the undertow subsystem in standalone.xml:
{code}
<servlet-container name="default" >
<jsp-config tag-pooling="false"/>
</servlet-container>
{code}
(Also I still can't get your example to work)
> JSP 2 different tags called with same tag instance
> --------------------------------------------------
>
> Key: WFLY-3393
> URL: https://issues.jboss.org/browse/WFLY-3393
> Project: WildFly
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Web (Undertow)
> Affects Versions: 8.1.0.CR2
> Reporter: roy mizrachi
> Assignee: Stuart Douglas
> Attachments: struts.zip, test.war, Test2.war
>
>
> When working with JSP tags on struts i can see that sometimes 2 diffrent tags with same type is called with the same instance.
> Example:
> JSP
> <jcv:text id="email" maxlength="255" property="valueObject.Email"/>
> <br>
> <jcv:text id="phone" maxlength="255" property="valueObject.Phone"/>
> TLD
> <tag>
> <name>text</name>
> <tagclass>tti.jcore.views.form.tag.JViewsTextTag</tagclass>
> ...
> </tag>
> I can see that the public int doStartTag() called for both with the same instance.
>
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
More information about the jboss-jira
mailing list