什么是一个web站点的欢迎页面?
-
对于一个webapp来说,我们是可以设置它的欢迎页面的。
-
设置了欢迎页面之后,当你访问这个webapp的时候,或者访问这个web站点的时候,没有指定任何“资源路径”,这个时候会默认访问你的欢迎页面。
-
我们一般的访问方式是:
- http://localhost:8080/Study/index.html 这种方式是指定了要访问的就是index.html资源。
-
如果我们访问的方式是:
- http://localhost:8080/Study 如果我们访问的就是这个站点,没有指定具体的资源路径。它默认会访问谁呢?
- 默认会访问你设置的欢迎页面。
-
怎么设置欢迎页面呢?
-
如果在webapp的根下新建一个目录,目录中再给一个文件,那么这个欢迎页该如何设置呢?
-
在webapp根下新建dir1
-
在dir1下新建dir2目录
-
在dir2目录下新建login.html页面
-
在web.xml文件中应该这样配置
-
dir1/dir2/login.html -
注意:路径不需要以/开始,并且路径默认从webapp的根下开始找。
-
-
-
一个webapp是可以设置多个欢迎页面的
-
dir1/login.html login.html -
注意:越靠上的优先级越高。找不到的继续向下找。
-
-
当文件名设置为index.html的时候,不需要在web.xml文件中进行配置欢迎页面。这是为什么?
-
这是因为Tomcat服务器已经提前配置好了。
-
实际上配置欢迎页面有两个地方可以配置:
-
一个是在webapp内部的web.xml文件中。(在这个地方配置的属于局部配置)就是配置welcome-file-list这个标签
-
一个是在CATALINA_HOME/conf/web.xml文件中进行配置。(在这个地方配置的属于全局配置)
-
index.html index.htm index.jsp -
Tomcat服务器的全局欢迎页面是:index.html index.htm index.jsp。如果你一个web站点没有设置局部的欢迎页面,Tomcat服务器就会以index.html index.htm index.jsp作为一个web站点的欢迎页面。
-
-
注意原则:局部优先原则。(就近原则)
-
-
-
欢迎页还可以是一个Servlet
-
欢迎页就是一个资源,静态资源,动态资源,都可以。
-
静态资源:index.html welcome.html and so on …
-
动态资源:Servlet类。
-
步骤:
-
第一步:写一个Servlet
-
public class WelcomeServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.print("Welcome to come here"); } }
-
-
第二步:在web.xml文件中配置servlet
-
loginServlet LoginServlet loginServlet /login
-
-
第三步:在web.xml文件中配置欢迎页
-
login
-
-
-
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)