Tomcat 服务器
B/S 浏览器/服务器
C/S 客户端/服务器
URI:统一资源标识符 大 广
/项目名
URL:统一资源定位符 小
Http://localhost:8080/项目名/页面
conf文件下的文件介绍
Context.Xml文件
服务器监听项目中的WEB-INF文件夹下面的web.xml文件
<WatchedResource>WEB-INF/web.xml</WatchedResource>
配置 JNDI数据源
Web.xml文件中的
<load-on-startup>1</load-on-startup> 设置优先级,大于0的整数!值越小优先级越大
设置会话的失效时间 默认是 30分钟
<session-config>
<session-timeout>30</session-timeout>
</session-config>
当用户请求服务器的时候,服务器默认的欢迎页面
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
Server.xml文件
配置服务器的端口号 以及 设置 get方式请求时的编码格式
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8"/>
jsp的执行过程
去掉jsp头部的预览界面
修改jsp页面的默认编码格式
jsp页面中几种编码格式的区别:
jsp九大内置对象
在jsp页面中书写java代码
找到项目在tomcat中的位置,之后找到对应java源文件查看!
jsp页面输出 双引号(“”)