id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	due_date
92	产品库动态 forward() 异常	chenchongqi	yuanhuoqing	"日志里很多这样的异常抛出：

java.lang.IllegalStateException: forward() not allowed after buffer has committed.

我检查了一下，这个地方是否漏了个return？
{{{
			Matcher matcher=PATTERN_REGEX_COMMENT.matcher(requestUrl);
			if(matcher.find(0)){
				StringBuffer newUrl=new StringBuffer(String.valueOf(fileNameMap.get(""comment"")));
				newUrl.append(matcher.group(1));
				newUrl.append(StringUtils.isEmpty(matcher.group(2))?"""":""&type=""+matcher.group(2));
				newUrl.append(StringUtils.isEmpty(matcher.group(4))?"""":""&flag=""+matcher.group(4));
				newUrl.append(StringUtils.isEmpty(matcher.group(6))?"""":""&cmtid=""+matcher.group(6));
				newUrl.append(StringUtils.isEmpty(matcher.group(8))?"""":""&pageNo=""+matcher.group(8));
				logger.info(""pdlib 1 doFilter:newurl=""+newUrl.toString());
				httpRequest.getRequestDispatcher(newUrl.toString()).forward(httpRequest, httpResponse);
			}
}}}
"	Bug	closed	major		产品库	产品库3.0	fixed			08/03/2012
