在后端放入值:request.setAttribute("test", "as");
jsp页面取值:<%
  String aa = request.getAttribute("test");
%>异常信息:
System Runtime Error:
Unable to compile class for JSP: An error occurred at line: 5 in the jsp file: /pages/front/index.jsp Type mismatch: cannot convert from Object to String 2: <%@ page contentType="text/html;charset=UTF-8" %> 3: <%@ include file="/this/tagbs.jsp" %> 4: <% 5: String aa = request.getAttribute("test"); 6: %> 7: 8: Stacktrace: 
各位大牛怎么处理 !!