Cannot access CSS files defined under WEB-INF from JSP(无法从 JSP 访问在 WEB-INF 下定义的 CSS 文件)
问题描述
我已经使用 Maven 创建了 Struts2 应用程序.在这个应用程序中,我创建了两个命名空间,第一个是 tc
,第二个是 cmpui
.从 JSP 页面,我试图访问 .css
文件,但它给了我 404 错误.
I have created Struts2 application using Maven. In this application I have created two namespaces, first is tc
and the second one is cmpui
. From the JSP page, I am trying to access .css
files, but it is giving me 404 error.
JSP 页面的位置是:
Location of JSP page is :
webapp clayoutstylesheets.jsp
CSS 文件的位置是:
Location of CSS file is :
WEB-INFcssdefault.css
JSP 页面上的代码是
Code on JSP page is
<link rel="stylesheet" type="text/css" href="../WEB-INF/css/default.css">
请给点建议.
推荐答案
您无法访问 WEB-INF
文件夹下的资源.将您的静态资源移动到 Struts2 可访问的另一个位置(例如,Web 根目录).并使用 s:url
标签构建 URL.
You can not access a resources that are under WEB-INF
folder. Move your static resources to another place accessible by Struts2 (for example, web root). And use s:url
tag to build the URL.
<link rel="stylesheet" type="text/css" href="<s:url value='/css/default.css'/>">
这篇关于无法从 JSP 访问在 WEB-INF 下定义的 CSS 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法从 JSP 访问在 WEB-INF 下定义的 CSS 文件
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01