[Web programming] experiment: use of development tools

1. Purpose of the experiment

(1) Master the use of server-side software necessary for the operation of web applications.

(2) Master the development tools necessary for web application development.

2. Experimental content

Installation and use of Tomcat; use idea to develop a simple web application.

3. Experimental requirements

(1) Master the installation and use of tomcat;

(2) Master the process of developing web applications with ideas.

(3) Do a good job of preview and clarify the purpose of the experiment.

(4) Carefully record the test process and analyze the cause of the error

(5) Summarize the operation steps;

4. Experimental steps and results (including program code and running screenshots)

Tomcat installation and use

Use idea to develop a simple web application.

 <!DOCTYPE html >
< html lang= "en" >
< head >
    < meta charset= "UTF-8" >
    < title > myfile </ title >
</ head >
< body >
< h1 >  This is my first pages </h1> </body> </html> _
_ _ _ _ _

 5. Experimental reflection

I encountered some problems when configuring tomcat. The first time I installed tomcat was very smooth. Later, because my computer system was filled and the computer did not have jdk, it failed at the beginning of the installation. Later, after downloading it from the Internet, it can be Normal configuration.

Guess you like

Origin blog.csdn.net/lf21qp/article/details/131371041