java_web/homework02/web/index.jsp
2024-12-03 01:18:20 +08:00

19 lines
404 B
Plaintext

<%@ page import="login.UserDB" %><%--
Created by IntelliJ IDEA.
User: 25589
Date: 2024/11/17
Time: 下午9:26
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>JDBC应用</title>
</head>
<body>
<% UserDB dbBean = new UserDB();
dbBean.ShowCommonUsers();
%>
</body>
</html>