controller2.jsp
来自「达内JAVA培训-WEB课程部分项目源代码」· JSP 代码 · 共 14 行
JSP
14 行
<%@page import="cn.com.tarena.web.jsp.day4.Student"%>
<%
Student student = new Student();
student.setUserName("tom");
student.setPassword("123");
student.setGender("m");
student.setProvince("130000");
student.setHobbies(new String[]{"s","e"});
student.setIntroduction("introduction of tom");
request.setAttribute("student",student);
%>
<jsp:forward page="studentModify2.jsp"/>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?