j2EE开发的起点:HttpServletRequest和HttpServletResponse

做web开发,几乎所有的东西都是从这两个东西开始的,所有的逻辑操作都是围绕这两个对象来操作HttpServletRequest和HttpServletResponse。

大纲

怎么来的

交互原理

两个对象里面分表是什么东西

怎么使用

参考文章:

https://www.cnblogs.com/liuyandeng/p/5336649.html

https://blog.51cto.com/tetop/1178214

https://www.cnblogs.com/yanghongfei/p/6972077.html

知识片段:

当访问为http://localhost:8080/Framework/DemoController/method1?data=456 的时候

j2EE开发的起点:HttpServletRequest和HttpServletResponse_第1张图片

当使用post访问的时候:

http://localhost:8080/Framework/JSONController/jsonTest

发送的数据为json格式

j2EE开发的起点:HttpServletRequest和HttpServletResponse_第2张图片

你可能感兴趣的:(web,java)