<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>devkuma – Internet</title>
    <link>https://www.devkuma.com/en/tags/internet/</link>
    <image>
      <url>https://www.devkuma.com/en/tags/internet/logo/180x180.jpg</url>
      <title>Internet</title>
      <link>https://www.devkuma.com/en/tags/internet/</link>
    </image>
    <description>Recent content in Internet on devkuma</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <managingEditor>kc@example.com (kc kim)</managingEditor>
    <webMaster>kc@example.com (kc kim)</webMaster>
    <copyright>The devkuma</copyright>
    
	  <atom:link href="https://www.devkuma.com/en/tags/internet/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Internet Overview</title>
      <link>https://www.devkuma.com/en/docs/internet/intro/</link>
      <pubDate>Sun, 03 Apr 2022 17:26:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/internet/intro/</guid>
      <description>
        
        
        &lt;h2 id=&#34;what-is-the-internet&#34;&gt;What Is the Internet?&lt;/h2&gt;
&lt;p&gt;The Internet is a compound of Interconnect Network and means interconnected networks. It refers to a collection of networks in which countless computers around the world are connected. Computers connected to the Internet are linked using a communication protocol called TCP/IP (Transmission Control Protocol/Internet Protocol). Each computer that makes up the Internet has a unique computer address called an IP address, and they are connected to one another through communication methods such as cables or satellites.&lt;/p&gt;
&lt;p&gt;Because of this, computer users around the world can easily obtain the information they need anytime and anywhere through the Internet.&lt;/p&gt;
&lt;h2 id=&#34;history-of-the-internet&#34;&gt;History of the Internet&lt;/h2&gt;
&lt;p&gt;The beginning of the Internet goes back to 1969, when ARPANet (Advanced Research Project Agency Network) from the U.S. Department of Defense first appeared. Early ARPANet began as a network that connected the computer systems of four U.S. universities (Stanford, UCLA, UC Santa Barbara, and Utah State University), designed so that even if one system was destroyed during a nuclear war, the remaining systems could still connect and compensate perfectly. After that, it gradually expanded by connecting major U.S. government and educational institutions. In 1983, ARPANet was divided into MILNet, the part used for military purposes, and the Internet, the part used for civilian purposes.&lt;/p&gt;
&lt;h2 id=&#34;internet-addressing-system&#34;&gt;Internet Addressing System&lt;/h2&gt;
&lt;p&gt;To exchange information on the Internet, each computer needs to be distinguished by assigning an address or name. The addressing systems provided by the Internet include IP addresses and domain names.&lt;/p&gt;
&lt;p&gt;To maintain the Internet, Internet addresses must be managed, and an organization responsible for new Internet technologies and standardization is needed. NIC (Network Information Center) is an international organization that registers and manages network and computer addresses such as IP addresses and domain names. In Korea, KRNIC, an affiliated organization of NIC, is responsible for Internet address management.&lt;/p&gt;
&lt;h3 id=&#34;ip-address&#34;&gt;IP Address&lt;/h3&gt;
&lt;p&gt;An IP address is a method of representing a computer&amp;rsquo;s address with numbers. It is structured by listing four areas in order, separated by dots (&lt;code&gt;.&lt;/code&gt;), from the highest-level address. For example, Google&amp;rsquo;s IP address is represented as &lt;code&gt;172.217.174.100&lt;/code&gt;. However, this method is inconvenient to memorize or use, so domain names are commonly used.&lt;/p&gt;
&lt;h2 id=&#34;understanding-urls&#34;&gt;Understanding URLs&lt;/h2&gt;
&lt;p&gt;All web documents on the Internet have a URL (Uniform Resource Locator), which is their own address and unique storage method. Just as each person has a unique fingerprint, every homepage has a unique URL. In other words, to retrieve data on the Internet, there must be a way to indicate where certain data is located. Therefore, a URL is a method for representing the location of information on the Internet. It has been used since 1990 and has now become the standard.&lt;/p&gt;
&lt;p&gt;URLs are written using characters to identify items and specify addresses within a computer network. In other words, a URL provides location information for a document, and an Internet web browser opens the URL at that location and displays the document. Because most location information is written in highlighted links, users do not need to remember the URLs of each document or homepage.&lt;/p&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
    </item>
    
    <item>
      <title>Telnet</title>
      <link>https://www.devkuma.com/en/docs/telnet/</link>
      <pubDate>Sun, 03 Apr 2022 18:02:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/telnet/</guid>
      <description>
        
        
        &lt;h2 id=&#34;telnet&#34;&gt;Telnet&lt;/h2&gt;
&lt;p&gt;The Telnet service on the Internet is a service that lets you connect to another computer, especially one using the UNIX operating system, and use it as if a keyboard and monitor were connected directly to that computer.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It is an Internet standard protocol supported when connecting to a remote host computer through the Internet.&lt;/li&gt;
&lt;li&gt;It is a TCP/IP-based protocol.&lt;/li&gt;
&lt;li&gt;It is a remote terminal connection service.&lt;/li&gt;
&lt;li&gt;TCP port number 23 is used by default.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It can display only a text screen rather than a graphical screen, but it is still widely used because it is simple, fast, and allows direct use of UNIX. However, to use Telnet well, you need to learn UNIX commands, and because only a text screen can be used, it is difficult to use without special knowledge.&lt;/p&gt;
&lt;h2 id=&#34;telnet-characteristics&#34;&gt;Telnet Characteristics&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Telnet is a kind of terminal emulation protocol and uses the concept of a virtual terminal called NVT (Network Virtual Terminal).&lt;/li&gt;
&lt;li&gt;It has a one-to-one symmetric relationship between the terminal and the host.&lt;/li&gt;
&lt;li&gt;Additional option negotiation is possible.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;what-is-nvt-network-virtual-terminal&#34;&gt;What Is NVT (Network Virtual Terminal)?&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;NVT is the most basic part of the Telnet protocol. When the remote system to connect to and the local system have different versions and therefore different data formats, it is a virtual device that converts data for smooth communication.&lt;/li&gt;
&lt;li&gt;NVT defines basic terminal control characters.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://www.devkuma.com/docs/internet/telnet_nvt.jpeg&#34; alt=&#34;NVT(Network Virtual Terminal)&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;how-telnet-works&#34;&gt;How Telnet Works&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://www.devkuma.com/docs/internet/telnet_flow.jpeg&#34; alt=&#34;How Telnet works&#34;&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The client establishes a TCP connection to the remote system (server) through remote login. (Default port 23)&lt;/li&gt;
&lt;li&gt;The remote system provides a virtual terminal to the connected client.&lt;/li&gt;
&lt;li&gt;The client executes commands on the remote system as if it were an actual terminal.&lt;/li&gt;
&lt;li&gt;The remote system executes the client&amp;rsquo;s command and sends the result back to the client.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;telnet-connection-clients&#34;&gt;Telnet Connection Clients&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Server and client built into Windows by default
&lt;ul&gt;
&lt;li&gt;For security reasons, the feature is disabled by default. To use it, it must be enabled in settings.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Putty, SecureCRT, Xshell, and similar tools can be used conveniently.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;references&#34;&gt;References&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;http://egloos.zum.com/guswl47/v/6481497&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Telnet protocol analysis and packet analysis (1)&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
      <category>Telnet</category>
      
    </item>
    
    <item>
      <title>Web</title>
      <link>https://www.devkuma.com/en/docs/web/</link>
      <pubDate>Sun, 03 Apr 2022 18:02:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/web/</guid>
      <description>
        
        
        &lt;h2 id=&#34;what-is-the-web&#34;&gt;What Is the Web?&lt;/h2&gt;
&lt;p&gt;The term most often encountered when using the Internet is probably the World Wide Web (WWW). The web is also called WWW, using only the first letters of the English words, or simply Web. The web symbolizes a web, meaning a spider web.&lt;/p&gt;
&lt;p&gt;Because the web is implemented graphically, one of its greatest advantages is convenient information search. It can display text and graphics on the screen at the same time, and thanks to its excellent user interface, text, graphics, sound, video, and similar content can be handled easily in a browser.&lt;/p&gt;
&lt;h2 id=&#34;web-browser&#34;&gt;Web Browser&lt;/h2&gt;
&lt;p&gt;A web browser is a client program that allows users to view hypertext documents on a web server using the Internet. It can process not only text but also multimedia data through hypermedia functions. When users want audio or video information, it can load and execute the required programs to handle various resources on the web.&lt;/p&gt;
&lt;p&gt;Basic functions provided by a web browser include opening web pages, providing a list of recently visited URLs (Uniform Resource Locators), remembering and managing frequently visited URLs, and saving and printing web pages. Without a web browser, even if you are connected to the Internet, you cannot view homepages on the Internet.&lt;/p&gt;
&lt;h3 id=&#34;types-of-web-browsers&#34;&gt;Types of Web Browsers&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Google Chrome.&lt;/li&gt;
&lt;li&gt;Mozilla Firefox.&lt;/li&gt;
&lt;li&gt;Chromium Microsoft Edge.&lt;/li&gt;
&lt;li&gt;Opera browser&lt;/li&gt;
&lt;li&gt;Vivaldi browser&lt;/li&gt;
&lt;li&gt;Naver Whale&lt;/li&gt;
&lt;li&gt;Brave browser&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;how-the-web-works&#34;&gt;How the Web Works&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://www.devkuma.com/docs/internet/web_flow.png&#34; alt=&#34;How the web works&#34;&gt;&lt;br&gt;
Image source: &lt;a href=&#34;http://tcpschool.com/webbasic/works&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;http://tcpschool.com/webbasic/works&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The user enters a URL in the browser.&lt;/li&gt;
&lt;li&gt;The browser finds the server&amp;rsquo;s IP address through DNS.&lt;/li&gt;
&lt;li&gt;It creates an HTTP request message using the HTTP protocol.&lt;/li&gt;
&lt;li&gt;It sends the HTTP request message through a TCP/IP connection.&lt;/li&gt;
&lt;li&gt;The server creates an HTTP response message using the HTTP protocol.&lt;/li&gt;
&lt;li&gt;It sends the response to the requesting computer through a TCP/IP connection.&lt;/li&gt;
&lt;li&gt;The arrived HTTP response message is returned as web page data and rendered by the web browser so the user can view it.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;international-standards-for-web-accessibility&#34;&gt;International Standards for Web Accessibility&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Web standards designed to improve web accessibility refer to commonly used technologies and rules.&lt;/li&gt;
&lt;li&gt;The W3C (World Wide Web Consortium) was established to define web standards.&lt;/li&gt;
&lt;li&gt;Web standards define HTML as the structure language, CSS as the presentation language, and Script as the behavior language.&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
      <category>Web</category>
      
    </item>
    
    <item>
      <title>FTP (File Transfer Protocol)</title>
      <link>https://www.devkuma.com/en/docs/ftp/</link>
      <pubDate>Sun, 03 Apr 2022 18:02:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/ftp/</guid>
      <description>
        
        
        &lt;h2 id=&#34;ftp&#34;&gt;FTP&lt;/h2&gt;
&lt;p&gt;FTP stands for File Transfer Protocol and is a communication protocol first released in 1971 so computers could exchange files over TCP/IP networks.&lt;br&gt;
It is a service used to transfer files on the Internet. While Telnet is a service used to connect to and use another computer, FTP is used to transfer files to a server computer or to receive files from a server computer onto your own computer.&lt;/p&gt;
&lt;p&gt;FTP is still widely used because it can transfer files quickly and reliably. To overcome the disadvantage of having to learn all commands, as with Telnet, dedicated FTP programs appeared and made it convenient to use.&lt;/p&gt;
&lt;h2 id=&#34;how-ftp-works&#34;&gt;How FTP Works&lt;/h2&gt;
&lt;p&gt;FTP is a client-server protocol. When the client requests a file, the server provides the requested file. Therefore, two basic channels are required to establish an FTP connection.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;One channel is the command channel, which sends commands and basic information such as which files can be accessed.&lt;/li&gt;
&lt;li&gt;The other channel is the data channel, which transfers file data between two devices.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To establish a connection, the user must provide login information for the FTP server, and FTP generally uses port 21 as its default communication mode.&lt;/p&gt;
&lt;h3 id=&#34;ftp-connection-modes&#34;&gt;FTP Connection Modes&lt;/h3&gt;
&lt;p&gt;There are two FTP connection modes: active mode and passive mode.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Active mode
&lt;ul&gt;
&lt;li&gt;The server takes an active role in approving data requests.&lt;/li&gt;
&lt;li&gt;In active mode, problems caused by firewalls often occur. If a third party attempts to access an unauthorized session, that session is blocked.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Passive mode
&lt;ul&gt;
&lt;li&gt;In passive mode, if a third party attempts to access an unauthorized session, the server does not actively maintain the connection.&lt;/li&gt;
&lt;li&gt;In other words, the user sets up both the data channel and the command channel. The server basically only &amp;ldquo;listens&amp;rdquo; and does not actively participate, allowing another device to handle most of the work.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;ftp-connection-clients&#34;&gt;FTP Connection Clients&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;FileZilla: the most widely used free program, available for Windows and macOS.&lt;/li&gt;
&lt;li&gt;WinSCP: a free program developed for Windows.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;advantages-and-disadvantages-of-ftp&#34;&gt;Advantages and Disadvantages of FTP&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Advantages
&lt;ul&gt;
&lt;li&gt;Multiple files can be transferred at the same time.&lt;/li&gt;
&lt;li&gt;If the connection is lost, the transfer can be restarted.&lt;/li&gt;
&lt;li&gt;Transfer schedules can be reserved.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Disadvantages
&lt;ul&gt;
&lt;li&gt;It is vulnerable in terms of security.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;what-is-sftp&#34;&gt;What Is SFTP?&lt;/h3&gt;
&lt;p&gt;FTP was developed in the 1970s, before most of the cybersecurity measures we use today were developed. Because it was not designed as a security protocol, FTP transfers do not encrypt files. As a result, passwords, usernames, and other sensitive data can be read relatively easily through packet capture attacks on data packets.&lt;/p&gt;
&lt;p&gt;SFTP (SSH File Transfer Protocol) is a separate protocol that provides highly secure file transfer through a Secure Shell (SSH) data stream. Unlike FTP clients that use port 21, SFTP uses port 22. Because of FTP&amp;rsquo;s weak security, many people prefer SFTP, which provides security features by default and uses SSH connections.&lt;/p&gt;
&lt;h2 id=&#34;references&#34;&gt;References&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://namu.wiki/w/FTP&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Namu Wiki: FTP&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://ko.wikipedia.org/wiki/%ED%8C%8C%EC%9D%BC_%EC%A0%84%EC%86%A1_%ED%94%84%EB%A1%9C%ED%86%A0%EC%BD%9C&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wikipedia: File Transfer Protocol&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://experience.dropbox.com/ko-kr/resources/what-is-ftp&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Dropbox: Meaning of FTP&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
      <category>FTP</category>
      
    </item>
    
    <item>
      <title>E-Mail</title>
      <link>https://www.devkuma.com/en/docs/e-mail/</link>
      <pubDate>Sun, 03 Apr 2022 18:02:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/e-mail/</guid>
      <description>
        
        
        &lt;h2 id=&#34;e-mail&#34;&gt;E-Mail&lt;/h2&gt;
&lt;p&gt;E-mail is a service that lets users send and receive letters using the Internet. It can be divided into web-based e-mail and e-mail that uses POP3.&lt;/p&gt;
&lt;h2 id=&#34;web-based-e-mail&#34;&gt;Web-Based E-Mail&lt;/h2&gt;
&lt;p&gt;Web-based e-mail includes services such as Gmail and Naver. With this type of mail, users can access the corresponding site on the Internet without a separate program, then manage and receive mail there.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Advantage: Because no separate program is used, it can be used easily when several people share one computer or in places where installing a separate program is difficult.&lt;/li&gt;
&lt;li&gt;Disadvantage: Users must use the interface provided by the company and must access that website.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;pop3&#34;&gt;POP3&lt;/h2&gt;
&lt;p&gt;With a POP3 server, users can send and receive mail using a POP3-supported e-mail client such as Outlook Express.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Advantage: Because it simply delivers letters, any program that supports POP3 can be used, so users can choose a program that is convenient for them.&lt;/li&gt;
&lt;li&gt;Disadvantage: A program must be installed to check e-mail contents.&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
      <category>E-Mail</category>
      
    </item>
    
    <item>
      <title>Difference Between Forward and Redirect</title>
      <link>https://www.devkuma.com/en/docs/forward-and-redirect/</link>
      <pubDate>Thu, 07 Apr 2022 01:19:00 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/forward-and-redirect/</guid>
      <description>
        
        
        &lt;h2 id=&#34;forward-method&#34;&gt;Forward Method&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Forward only moves pages at the Web Container level. In practice, the web browser cannot tell that it has moved to another page. Therefore, the web browser displays the URL that was first called, and the URL information of the page that was moved to cannot be checked.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The currently running page and the page called by forward share the Request object and Response object.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://www.devkuma.com/docs/web/web_forward.png&#34; alt=&#34;Forward method&#34;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Statement used when moving from a Servlet to a JSP page&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#000&#34;&gt;RequestDispatcher&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;rd&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;request&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;getRequestDispatcher&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;test01.jsp&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;);&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#000&#34;&gt;rd&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;forward&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;request&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;response&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;);&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;redirect-method&#34;&gt;Redirect Method&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;When a Redirect command enters the Web Container, it instructs the web browser to move to another page. Then the web browser changes the URL to the instructed address and moves to that address. It moves to an address in another web container.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;On the new page, new Request and Response objects are created.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://www.devkuma.com/docs/web/web_redirect.png&#34; alt=&#34;Redirect method&#34;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Statement used when moving from a Servlet to a JSP page&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#000&#34;&gt;response&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;sendRedirect&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;test02.jsp&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;);&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;source&#34;&gt;Source&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://blog.naver.com/saintw/100165339381&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Difference between redirect and forward&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>Network</category>
      
      <category>Internet</category>
      
      <category>Web</category>
      
    </item>
    
  </channel>
</rss>
