为了账号安全,请及时绑定邮箱和手机立即绑定

Servlet开发-day04

标签:
Java

一、Servlet类是干啥的?

在回答这个问题之前,我们知道String类用来处理字符串,Connection类用来获取数据库连接,ArrayList类用来存储一组有序的对象,Timer类用于定时器操作......

而Servlet类正是用于处理客户端请求,返回结果给到客户端。

二、Servlet如何处理Post请求和Get请求

1、Get请求:浏览器输入url访问

https://img1.sycdn.imooc.com//5c1dc14700018c1e08670192.jpg

<servlet>
  <servlet-name>URLServlet</servlet-name>
  <servlet-class>
</servlet>
<servlet-mapping>
  <servlet-name>URLServlet</servlet-name>
  <url-pattern>/URLServlet</url-pattern>
</servlet-mapping>

https://img1.sycdn.imooc.com//5c1dc1f800013a8407780083.jpg

https://img1.sycdn.imooc.com//5c1dc2cb000155a708340196.jpg

https://img1.sycdn.imooc.com//5c1dc2da0001549008060097.jpg

链接<a>访问Servlet

https://img1.sycdn.imooc.com//5c1dc3d10001f6cd07680249.jpg

https://img1.sycdn.imooc.com//5c1dc40b000136b706880095.jpg

发现点击链接后,页面不跳转?原因:html中跳转的地址有误。少了http协议名!

https://img1.sycdn.imooc.com//5c1dc5270001ce9c08050264.jpg

https://img1.sycdn.imooc.com//5c1dc51500013d1105200087.jpg

2、Post请求:表单访问

https://img1.sycdn.imooc.com//5c1dc6350001c5b605910274.jpg

https://img1.sycdn.imooc.com//5c1dc6710001521c05070088.jpg

https://img1.sycdn.imooc.com//5c1dc69b00010e5910450236.jpg

https://img1.sycdn.imooc.com//5c1dc6d400015ce007440193.jpg

https://img1.sycdn.imooc.com//5c1dc6ee00011ea605810084.jpg

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消