Jsp

2019-03-06  本文已影响0人  Mtllll

1. jsp的实质就是servlet,它是HttpServlet的孙子类,访问jsp的时候,tomcat会把jsp加载成servlet,通过文件夹可以看到

2. 内置对象 (在真身servlet中service方法里被定义)

3. jsp指令<%@ 指令 attr1=" ">

<%@ page contentType="text/html;charset=UTF-8" language="java" %>

4. 假定你的web application 名称为news,你在浏览器中输入请求路径:

http://localhost:8080/news/main/list.jsp

则执行下面向行代码后打印出如下结果:

1、 System.out.println(request.getContextPath());

打印结果:/news
2、System.out.println(request.getServletPath());

打印结果:/main/list.jsp
3、 System.out.println(request.getRequestURI());

打印结果:/news/main/list.jsp
4、 System.out.println(request.getRealPath("/"));

打印结果: F:\Tomcat 6.0\webapps\news\test

上一篇下一篇

猜你喜欢

热点阅读