in servlet, as we can access the real path of deployed project
ServletContext context = getServletConfig().getServletContext();
string contextStr = context.getRealPath(".....");
How can i access the deployed project path in JSP page, any idea please ?
1 Answer