gpt4 book ai didi

java - Spring MVC。为什么 JSP 页面看不到资源?

转载 作者:太空宇宙 更新时间:2023-11-04 10:07:37 25 4
gpt4 key购买 nike

我有简单的 spring mvc 应用程序。我尝试将 CSS 之类的静态资源添加到我的应用程序中,但我的 jsp 页面找不到它。

我的 jsp 页面如下所示:

    <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><fmt:message key="app.title"/></title>
<link rel="stylesheet" href="/resources/css/style.css">
</head>
<body>
..................................................................
</body>
</html>

我的 spring-mvc 上下文看起来是这样的:

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

<mvc:annotation-driven/>

<mvc:resources mapping="/resources/**" location="/resources/"/>

<context:component-scan base-package="ru.javawebinar.**.web"/>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:viewClass="org.springframework.web.servlet.view.JstlView"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp"/>

我的资源位于:

enter image description here

最佳答案

您使用的是 JSTL 吗?如果是这样,您可以像这样包含。

 <link href="<c:url value="/resources/css/style.css" />" rel="stylesheet">

另一种方法是:

<link href="${pageContext.request.contextPath}/resources/css/style.css" rel="stylesheet" >

关于java - Spring MVC。为什么 JSP 页面看不到资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52754920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com