网页放在WEB-INF下面怎样发布访问

web project网页放在WEB-INF下面受保护,不能直接访问,有下面三种方式:

假设要发布的网页为a.jsp,建表单form。

1、在web.xml中,将默认index.jsp改成./WEB-INF/view/a.jsp,其他注释:

   index.html
    index.htm
    index.jsp
    default.html
    default.htm  –>
    ./WEB-INF/view/a.jsp 


访问方式为:http://localhost:8080/demo/

2、建servlet,jump.Java,doGet下写方法

RequestDispatcher rd = request.getRequestDispatcher(“./WEB-INF/view/a.jsp”);
rd.forward(request, response);


在web.xml中给URL取访问名,jump:

    jump
    database.jump
 
 
    jump
    /jump
 


访问方法:http://localhost:8080/demo/jump

3、在web.xml中自建


在a.jsp中修改from action的获取方式:

/doinsert” method=”post”>

访问方式:访问方法:http://localhost:8080/demo/doinsert.jsp


文章来源:http://blog.csdn.net/qq_24474911/article/details/52269636

你可能感兴趣的:(java,网页放在WEB-IN)