JAVA日记
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
10 随笔 :: 0 文章 :: 0 评论 :: 0 Trackbacks
<
2010年8月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的评论
我的参与
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2010年8月 (10)
搜索
最新评论
阅读排行榜
1. 小型超市管理系统的部分代码(1664)
2. SWING无布局添加控件(582)
3. myeclip连接Mysql的方法(222)
4. 学生类DAO(登陆验证功能)(217)
5. 本地客户端表单验证(193)
评论排行榜
1. 利用JXL读取EXCEL并持久化(0)
2. SWING无布局添加控件(0)
3. JDBC 连接ACCESS方法(0)
4. 微软简化Visual Studio 非程序员也能开发软件(0)
5. struts项目配置(登陆功能)(0)
servlet的简单配置
package
servlets;
import
java.io.IOException;
import
java.io.PrintWriter;
import
javax.servlet.ServletException;
import
javax.servlet.http.HttpServlet;
import
javax.servlet.http.HttpServletRequest;
import
javax.servlet.http.HttpServletResponse;
import
entity.
*
;
import
DAO.
*
;
public
class
loginservlet
extends
HttpServlet
{
/** */
/**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to post.
*
*
@param
request the request send by the client to the server
*
@param
response the response send by the server to the client
*
@throws
ServletException if an error occurred
*
@throws
IOException if an error occurred
*/
public
void
doPost(HttpServletRequest request, HttpServletResponse response)
throws
ServletException, IOException
{
student s
=
new
studentDAO().login(request.getParameter(
"
username
"
),request.getParameter(
"
password
"
));
if
(s
!=
null
)
{
request.setAttribute(
"
message
"
,
"
登陆成功
"
);
}
else
{
request.setAttribute(
"
message
"
,
"
登陆失败
"
);
}
request.getRequestDispatcher(
"
/result.jsp
"
).forward(request, response);
}
}
posted on 2010-08-03 22:21
辛彤
阅读(152)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © 辛彤