博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
5.17
阅读量:5088 次
发布时间:2019-06-13

本文共 3106 字,大约阅读时间需要 10 分钟。

details behind acronyms like HTTP, CGI, and JSP. As a Struts developer, you don’t need to be an alphabet soup guru, but a working knowledge of these base technologies can help you devise creative solutions to tricky problems. 

Hypertext Transfer Protocol (HTTP): 
When mediating talks between nations, diplomats often follow a formal protocol. Diplomatic protocols are designed to avoid misunderstandings and to keep negotiations from breaking down. In a similar vein, when computers need to talk, they also follow a formal protocol. The protocol defines how data is transmitted and how to decode it once it arrives. Web applications use the Hypertext Transfer Protocol (HTTP) to move data between the browser running on your computer and the application running on the server. 
Many server applications communicate using protocols other than HTTP. Some of these maintain an ongoing connection between the computers. The application server knows exactly who is connected at all times and can tell when a connection is dropped. Because they know the state of each connection and the identity of each person using it, these are known as stateful protocols. 
By contrast, HTTP is known as a stateless protocol. An HTTP server will accept any request from any client and will always provide some type of response, even if the response is just to say no. Without the overhead of negotiating and retaining a connection, stateless protocols can handle a large volume of requests. This is one reason why the Internet has been able to scale to millions of computers. 
Another reason HTTP has become the universal standard is its simplicity. An HTTP request looks like an ordinary text document. This has made it easy for applications to make HTTP requests. You can even send an HTTP request by hand using a standard utility such as Telnet. When the HTTP response comes back, it is also in plain text that developers can read. 
The first line in the HTTP request contains the method, followed by the location of the requested resource and the version of HTTP. Zero or more HTTP request headers follow the initial line. The HTTP headers provide additional information to the server. This can include the browser type and version, acceptable document types, and the browser’s cookies, just to name a few. Of the seven request methods, GET and POST are by far the most popular. 
Once the server has received and serviced the request, it will issue an HTTP response. The first line in the response is called the status line and carries the HTTP protocol version, a numeric status, and a brief description of the status. Following the status line, the server will return a set of HTTP response headers that work in a way similar to the request headers. 
As we mentioned, HTTP does not preserve state information between requests.The server logs the request, sends the response, and goes blissfully on to the next request. While simple and efficient, a stateless protocol is problematic for dynamic applications that need to keep track of their users. (Ignorance is not always 

转载于:https://www.cnblogs.com/q871516337/p/5501993.html

你可能感兴趣的文章
不使用存储过程针对对oracle数据库进行分页
查看>>
迅雷极速版任务出错的解决办法(亲测可用)
查看>>
mac下使用PyCharm遇到的坑坑洼洼
查看>>
docker1-1
查看>>
kettle转换JavaScript获取命令行参数
查看>>
学习进度十六
查看>>
C#并行编程-Task
查看>>
Google人工智能面试·真·题(附参考答案+攻略)(转)
查看>>
缓存穿透 缓存雪崩 缓存击穿
查看>>
各类免费api接口
查看>>
关于Boost在工程下的配置
查看>>
[ Java ][ Eclipse ] 停止讓 Eclipse 跳出 Password Required
查看>>
String常用方法
查看>>
一个前端所需具备的PS能力
查看>>
Mac下Jenkins+SVN+Xcode构建持续
查看>>
matplotlib中的颜色及线条控制
查看>>
Linux--逻辑卷管理器
查看>>
SQLServer 在Visual Studio的连接方法
查看>>
CentOS获取公网IP
查看>>
删除文件夹下所有文件
查看>>