简体   繁体   中英

i can't access to WEB-INF/file.jsp even with using request dispatcher i got error 404

在此处输入图片说明

I can't access to WEB-INF/test.jsp even with using request dispatcher and froward method from a 'servlet' , i get error 404 and when i try to access to http://localhost:8080/app/test.jsp ,where "/app" is the project name ,

Please help me , i don't know where is the problem

JSP pages inside WEB-INF can not be accessed by URL. So http://localhost:8080/app/test.js would never work.

In your Servlet just add "/" before WEB-INF. So it should be:

"/WEB-INF/test.jsp"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM