You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
example/web/person.jsp

13 lines
243 B

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<title>Person 信息</title>
</head>
<body>
<h1>Person 信息</h1>
<p>姓名:${person.name}</p>
<p>年龄:${person.age}</p>
</body>
</html>