/**
* 商品详情页
*
* @param orf
* @param req
* @param resp
* @throws ServletException
* @throws IOException
*/
@RequestMapping("/productinfo.jhtml")
public void productInfo(BuyerOrderInfoForm orf, HttpServletRequest req,
HttpServletResponse resp) throws ServletException, IOException {
req.getRequestDispatcher("/buyer/order/productinfo.jsp").forward(req,
resp);
}
原文:http://blog.csdn.net/wuzhiweiwuzhiwei/article/details/44560473