【Servlet】如何隐藏.jsp后缀或是更改后缀名

【需求描述】

    因为某些原因,我们讨厌看到.jsp的结尾作为一个网页的后缀名。当然,我们同样不希望看到.html,我们希望简洁好记,比如说,如果是hello.jsp或者hello.html我们只需要显示hello就好了。

       这个就类似于struts2框架中所有的action默认是.action后缀,我们通过修改配置文件 struts.xml可以修改为没有后缀或者是其他任何后缀,比如说“.php",".asp"都可以。

        当然,springMVC也同样可以做到。

        言归正传,那当我们使用Servlet的时候,应该怎么做呢?

 

【代码实现】(以eclipse IDE为例)

    1. 新建项目

    2. 新建一个index.jsp(或者index.html),还有一个hello.jsp(或hello.html)。

        此步骤需要注意index.jsp(或者index.html)我们并不做任何操作,直接让它在加载的时候就跳转到某个Servlet,这个例子之所以这样做是为了效果显示更快。

        代码如下:

        index.html





 
Welcome to Smileyan





        hello.html




	
	
	Hello Servlet
	  
	
	



欢迎访问此页面!

这是一个超大屏幕。

学习更多

        3. 新建Servlet

        需要说明的是,eclipse(只要不是太老的版本),自带了注解方式,所以新建之后会在class名上一行会有注解,修改这个注解就可以修改访问路径,一次是值得推崇的。但是myeclipse和Idea并没有自带这个功能,因此需要自己在web.xml配置中修改一下同样不麻烦。

package cn.smileyan.demos.servlet;

import java.io.IOException;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class HelloServlet
 */
@WebServlet("/index")
public class HelloServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		RequestDispatcher rs = request.getRequestDispatcher("hello.html");
		rs.forward(request, response);
	}

	/**
	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doGet(request, response);
	}

}

    4.  运行后默认跳转到index.html,然后会跳转到访问路径index的Servlet,然后显示的界面却是hello.html的界面,浏览器上面的路径是servlet的访问路径,也就是 index。

   【特别说明】我们可以通过这种方式,模拟成其他语言的网页,比如我们把index改成index.php,访问路径和index.html的跳转路径都改成这个,就可以分方便的实现最后访问路径成了,index.php。

【总结】

       也就是说,我们可以通过这种方式来隐藏.jsp或是.html的后罪名,我们可以让所有的页面显示都交付给servlet,当然,这样做也就意味着需要新建很多servlet,如果需要这样做的也不错。

        同样的道理,我们以后任何想要显示的界面都可以用这种方式,来取出后缀名。


    

你可能感兴趣的:(我的大后端)