gpt4 book ai didi

java - 调度程序 servlet 中的映射资源(Resin 服务器)

转载 作者:太空宇宙 更新时间:2023-11-04 13:58:57 24 4
gpt4 key购买 nike

这是我的 dispacter-servlet.xml 文件。当我在resin pro 4.0.36上部署项目时,它会加载我的索引页面和内容,但无法加载存储在staticresources文件夹下的css文件和图像

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

<context:component-scan base-package="com.dogears" />


<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/pages/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>

<import resource="classpath:beans.xml"/>

<mvc:resources mapping="/resources/**" location="/staticresources/" />
<mvc:annotation-driven />

请谁能告诉我如何映射我的静态资源文件夹,以便每当请求是/resources/* 模式时,它都会将请求重定向到静态资源文件夹。 staticresources 文件夹位于 MyspringProject/src/main/webapps 目录

最佳答案

我相信您需要将 staticresources 目录映射为根目录。在 Eclipse 中,这将是“源文件夹”,在 IntelliJ 中,这将是“资源根目录”。

根据您的 IDE,请参阅以下帮助文档:

eclipse :http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Freference%2Fref-wizard-source-folder.htm

IntelliJ:https://www.jetbrains.com/webstorm/help/configuring-folders-within-a-content-root.html

关于java - 调度程序 servlet 中的映射资源(Resin 服务器),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29507380/

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