<%
response.getWriter().write("Hello I‘m response Method......");
%>
<%
System.out.println("Hello JSP");
String contextPath = request.getContextPath();
out.print(contextPath);
int i = 5;
%>
#两者的区别
原文:https://www.cnblogs.com/withLevi/p/14647181.html