在netbeans中将静态文件添加到spring MVC项目

时间:2018-03-12 13:17:23

标签: java spring jsp

我试图研究这个主题,我得到的答案和解决方案没有帮助 我是spring mvc的新手我正在尝试添加自己的静态文件但是我一直收到文件错误

这是我的项目结构

Project structure

我还将这些代码行添加到dispatcher-servlet.xml文件

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

然后我尝试将一个favicon添加到我的jsp文件中

    <head>
     ...
     <!--Begin Spring variables-->
     <spring:url value="/resources/images/favicon.ico" var="favicon" />
     <spring:url value="/resources/css/style.css" var="style" />
     <spring:url value="/resources/js/functions.js" var="functions" />
     <!--End spring variables-->

     <link rel="shortcut icon" href="${favicon}" />
     <link rel="stylesheet" href="${style}" />
     ...
    </head>

以相同的方式添加js和css文件,但我仍然会收到错误。

我可能做错了什么?

如果没有,为什么它不起作用

我的春季版是4.0.1 我也很感激任何可以帮助我解决这个问题并继续我的项目的教程

注意添加此行

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

到调度程序文件会导致glassfish启动项目失败,但删除它会加载项目但没有资源 我注意到,当我包含任何行时,服务器无法部署项目:

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

这是服务器的错误日志

Server logs

我还注意到我可以添加图像和其他文件,但我无法使用css将图像添加到容器中 我不能这样做

    <div style="background-image: url('${banner}');
         background-repeat: no-repeat;
         background-size: cover;">

意味着添加的静态文件无法正常工作

这是整个调度程序文件

    <?xml version='1.0' encoding='UTF-8' ?>
    <!-- was: <?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"
   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">

<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props>
            <prop key="index.htm">indexController</prop>
        </props>
    </property>
</bean>
<bean id="viewResolver"
      class="org.springframework.web.servlet.view.InternalResourceViewResolver"
      p:prefix="/WEB-INF/jsp/"
      p:suffix=".jsp" />
    <!--
The index controller.
-->
<bean name="indexController"
      class="org.springframework.web.servlet.mvc.ParameterizableViewController"
      p:viewName="index" />

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

0 个答案:

没有答案