Why servletContext method getRealPath return path to target dir?

74 Views Asked by At

I have simple project structure

enter image description here

And I have servlet that show realpath to WEB-INF dir

@WebServlet(name = "helloServlet", value = "/hello-servlet")
public class HelloServlet extends HttpServlet {


    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
        ServletContext context = getServletContext();
        System.out.println(context.getRealPath("/WEB-INF"));
    }


} 

When I run this application console shows

enter image description here

How can I get path to Web-inf dir but not for target?I want store user image there

0

There are 0 best solutions below