java-web/examples/chapter04/webapp/welcome.jsp

11 lines
258 B
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>欢迎页面</title>
</head>
<body>
<h1>热烈欢迎!</h1>
<p><%= request.getAttribute("message") %></p>
</body>
</html>