Problem with moving JSPs under WEB-INF directory

2019-06-07 07:32发布

I am facing a problem when I move my JSP files along with CSS and JS files under WEB-INF/web/ directory. The problem is that, when a JSP page loads, it does not load CSS and JS files. Please help if you have any idea about it.

Thanks

Umar

4条回答
一夜七次
2楼-- · 2019-06-07 07:38

WEB-INF is not web accessible, you need to put css/js into public_html(www) as browser loads them through http.

查看更多
SAY GOODBYE
3楼-- · 2019-06-07 07:47

You can use the contextPath to retrieve any file from the foot folder,this way can work with files inside and outside WEB-INF folder.

You can make like this

<link rel="stylesheet" href="${pageContext.request.contextPath}/css/fromStyle.css" type="text/css">
查看更多
戒情不戒烟
4楼-- · 2019-06-07 07:58

Unless you want to write controllers to serve the css/js files in the WEB-INF folder, you will need to move those files out of WEB-INF so that they can be served as static files by the app server.

查看更多
一夜七次
5楼-- · 2019-06-07 07:58

To access 'WEB-INF' use

getServletContext().getRealPath("/WEB-INF/...");
查看更多
登录 后发表回答