单项选择题

阅读下面代码片段(其中login.jsp页面在WebContext目录下):Servlet1:request.setAttribute("company","XXX有限公司");RequestDispatcherdispatcher=request.getRequestDispatcher("login.jsp");dispatcher.forward(request,response);login.jsp:hello${company}当使用浏览器访问Servlet1时会什么结果?()

A.页面跳转失败
B.页面结果显示为:hello${company}
C.页面跳转错误,程序出现异常
D.正常跳转,页面显示为:helloXXX有限公司