java_web/homework02/web/index.jsp
2024-12-26 14:53:20 +08:00

23 lines
516 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();
try {
dbBean.ShowCommonUsers();
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
%>
</body>
</html>