我的 HTML 登录页面
<html>
<head>
<title>FormBased Authentication Demo in WebLogic Sample</title>
</head>
<body bgcolor=maroon text=white>
<center>
<h2>Please Enter Your UserName & Password (FormBased Auth Example)</h2>
<form method="POST" action="j_security_check">
<table border=5%>
<tr>
<td>Username:</td>
<td><input type="text" name="j_username"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="j_password"></td>
</tr>
<tr>
<td colspan=2 align=right><input type=submit value="Submit"></td>
</tr>
</table>
</form>
</center>
</body>
</html>
j_security_check 类似于 weblogic 提供的用于实现 SQLAuthencticatoin 的 servlet。
现在我想从 servlet(我自己的自定义 servlet)中调用 j_security_check servlet,因为我需要在将其路由到 j_security_check 之前执行更多代码。谁能帮我吗 ?