|
From: Trevor C. <pr...@se...> - 2003-09-27 17:47:24
|
I have commited the previously mentioned changes. RequestContextAwareTag.doStartTagInternal is no longer abstract, and returns super.doStartTag() by default. RequestContext now contains a convenience method for getMessage(String). Finally, a little warning/gotcha I noticed. When upgrading our tags from extending com.interface21.web.tags.TagInWebApplicationContext to org.springframework.web.servlet.tags.RequestContextAwareTag, I found a problem. Our tags returned super.doStartTag(). While this works normally when extending TagSupport and used to work in Spring, the new method with "doStartTagInternal" means that you end up with an infinite loop. Just FYI. Trevor D. Cook |