Dúvida configuração Spring

Bom dia!

Então, estou com um problema usando o spring. Simplesmente não consigo liberar o acesso aos arquivos da pasta resources, sempre da erro 404. Já configurei o spring de todos os jeitos. Achei pessoas que tiverem problemas parecidos em outros tópicos mas a solução apresentada não me ajudou.

A versão do jars que estou usando é 4.0.1

Segue os arquivos de configuração.

Spring

<?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:context="http://www.springframework.org/schema/context"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="http://www.springframework.org/schema/mvc 
    http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.1.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.1.xsd" >
   
  <mvc:resources mapping="/resources/**" location="/resources/" />
  
  <mvc:annotation-driven />
  <mvc:default-servlet-handler/>
  
  <context:component-scan base-package="net.renanpassos.voil" />
  <context:annotation-config />
  
  <mvc:interceptors>
      <bean class="net.renanpassos.voil.interceptor.AutorizadorInterceptor" />
  </mvc:interceptors>

  <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/"/>
    <property name="suffix" value=".jsp"/>
  </bean>
   
  <bean id="mysqlDataSource" class="org.apache.commons.dbcp.BasicDataSource">
      <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
      <property name="url" value="jdbc:mysql://localhost/voil" />
      <property name="username" value="root" />
      <property name="password" value="****" />
  </bean>
  
  <!-- gerenciamento de jpa pelo spring -->
  <bean id="entityManagerFactory" 
      class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
      <property name="dataSource" ref="mysqlDataSource" />
      <property name="jpaVendorAdapter">
          <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
      </property>
  </bean>

  <!-- gerenciamento da transação pelo spring -->
  <bean id="transactionManager" 
      class="org.springframework.orm.jpa.JpaTransactionManager">
      <property name="entityManagerFactory" ref="entityManagerFactory"/>
  </bean>  
  
  
  <tx:annotation-driven transaction-manager="transactionManager"/>
  
</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    
    <welcome-file-list>
        <welcome-file>redirect.jsp</welcome-file>
    </welcome-file-list>
    
    
    <servlet>
      <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
      <servlet-class>
          org.springframework.web.servlet.DispatcherServlet
      </servlet-class>
      <init-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>
              /WEB-INF/spring-context.xml
          </param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
      <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
      <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>

Estrutura no netbeans

Consegui depois de dois dias tentando.

para quem tiver os mesmo problema no futuro eu adicionei o seguinte código no web.xml

<servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>/resources/*</url-pattern>
</servlet-mapping>