我的第一篇博客。把我的学习笔记分享给大家!
1.web 网页
1.1 internet 上供外界访问的web资源
- 静态- 动态web资源
1.2 静态web资源开发技术
- Html Hyper Text Larkup Language
1.3 常用动态web资源开发技术
- JSP/Servlet、ASP、PHP等
2.Tomcat目录结构说明
bin: 可运行程序的目录 startup.bat shutdown.bat
conf: 配置文件目录 tomcat-users.xml server.xml
lib: tomcat运行时需要的依赖包
logs:tomcat运行时的日志文件存放目录
temp: tomcat运行时需要的临时文件
webapps: 将来存放我们自己开发web应用程序的默认目录
work: tomcat运行时的工作目录
3.静态资源的方式:
第一步: 在tomcat的webapps目录下新建一个 文件夹,起名 webapp1
第二步:进入webapp1目录下,新建一个html页面(.html/.htm),index.html
<span style="background-color: rgb(153, 255, 153);"><!DOCTYPE html>
<html>
<head>
<title>webapp1 - title</title>
</head>
<body>
<h1>hello tomcat</h1>
</body>
</html> </span>
第三步:保存,(有必要时,重启tomcat服务器)让tomcat运行我们的webapp1应用程序。