我是靠谱客的博主 敏感西装,最近开发中收集的这篇文章主要介绍Servlet 项目,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Servlet是利用Java类编写的服务端应用程序,它可以被看作是位于客户端和服务器的一个中间层,负责接受和请求客户端用户的响应。
1:对客户端发送的数据惊醒读取和拦截
2:读取客户端请求的隐含数据
3:运行结果或者生活结果
4:发送响应的数据

#Servlet的技术特点

Servlet的xml文件配置

在这里插入图片描述

inder文件

在这里插入图片描述

Servlet的生命周期

// 运行 protected void service(HttpServletRequest arg0,
HttpServletResponse arg1) 		throws ServletException, IOException {
	super.service(arg0, arg1); }

// 销毁 public void destroy() { 	super.destroy(); }

标题LogIn文件

public class LoginServlet extends HttpServlet { 	@Override
	protected void doGet(HttpServletRequest req, HttpServletResponse
resp) 			throws ServletException, IOException { 		String name
=req.getParameter("name"); 		String pwd =req.getParameter("pwd"); 		System.out.println(" 姓名:"+name+"/密码:"+pwd);
		System.out.println("get......."); 	} 	@Override 	protected void
doPost(HttpServletRequest req, HttpServletResponse resp) 			throws
ServletException, IOException { 		String name
=req.getParameter("name"); 		String pwd =req.getParameter("pwd"); 		System.out.println(" 姓名:"+name+"/密码:"+pwd);
		System.out.println("post......."); 	} }

在浏览器上运行一下就可以了 就可以看到了

在这里插入图片描述

最后

以上就是敏感西装为你收集整理的Servlet 项目的全部内容,希望文章能够帮你解决Servlet 项目所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部