gpt4 book ai didi

java - Netbeans Spring 找不到资源文件

转载 作者:行者123 更新时间:2023-11-28 04:43:39 25 4
gpt4 key购买 nike

我发现从资源目录连接 CSS 和 JS 文件时出现问题。

目录结构:

enter image description here

JSP 文件:

<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<spring:url value="/resources/css/style.css" var="mainCss" />

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Project Name</title>
<link href="${mainCss}" rel="stylesheet" />

</head>
<body>
</body>
</html>

applicationContext.xml 文件:

<?xml version='1.0' encoding='UTF-8' ?>

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


<context:annotation-config />
<context:component-scan base-package="com.controller"/>
<mvc:default-servlet-handler/>
<mvc:annotation-driven/>

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="messages" />
</bean>
</beans>

当我在控制台查看样式表文件下的内容时,我发现:

资源解释为样式表但使用 MIME 类型 text/html 传输:“http://localhost:8080/ProjectName/resources/css/style.css”。

路径正在重定向到应用程序索引。

您知道如何修复它吗?是什么导致了这个问题?

最佳答案

你能不能试着改变一下

<spring:url value="/resources/css/style.css" var="mainCss" />

<spring:url value="./resources/css/style.css" var="mainCss" />

关于java - Netbeans Spring 找不到资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41077975/

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