[JAVA] [Terms] Static and dynamic

Static and dynamic Dynamic web projects basically interact with the server side A static web project is completed on the client side

Example 1) Static web project It is a static Web project that the information on the screen does not switch like a corporate site (* There are exceptions below)

Example 2) Dynamic web project After logging in on the login screen, "Welcome to XXXX" is a dynamic web project.

Exception) A static web project is also called a client-side </ b> operation that switches images using JavaScript, such as an advertising banner.

Since there are exceptions, when distinguishing between dynamic and static, it is easy to understand if you judge whether you are using the following technology

  • Please note that some people consider JavaScript technology to be dynamic.

① Static web project ・ Client side ・ HTML / CSS / JavaScript ・ Those that work only with a browser (IE / Google Chrome / Safari)

② Dynamic web project ・ Server side -When interacting with the server like Java / C # / PHP

Recommended Posts