Spring 3,基于Java的配置和资源访问问题

时间:2012-03-30 08:59:06

标签: spring-mvc spring-3

我正在使用Spring 3,基于java的配置,使用BootStrap。

我已经下载了bootstrap并将css和js放在资源目录下。

我不能在freemarker页面中使用这些.css的问题。 但是我进口了它们。 当我使用基于java的配置时,我添加了“addResourceHandler”,如下所示:

WebAppConfig:

@Configuration
@EnableWebMvc
@ComponentScan("com.springway")
public class WebConfig implements WebApplicationInitializer {

    @Override
    public void onStartup(final ServletContext servletContext) throws ServletException {
        final AnnotationConfigWebApplicationContext root = new AnnotationConfigWebApplicationContext();
        root.setServletContext(servletContext);
        root.scan("com.springway");
        root.refresh();

        final ServletRegistration.Dynamic servlet = servletContext.addServlet("spring", new DispatcherServlet(root));
        servlet.setLoadOnStartup(1);
        servlet.addMapping("/*");
    }

    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
    }
  

Tomcat日志说:

     

“警告:找不到带URI的HTTP请求的映射

     
    

[/ springway / resources / css / bootstrap-responsive.css] in     DispatcherServlet,名称为“spring”

  

目录:

-SpringWay
>       -src
>            - main
>                   -webapp
>                           -resources
                            -WEB-INF
                                 -welcome.ftl
                                 -springway.ftl    

welcome.ftl:

[#ftl /]
[#include "springway.ftl" /]


<ul class="breadcrumb">
  <li>
    <a href="[@spring.url '/test'/]">Test</a> <span class="divider">/</span>
  </li>
  <li>
    <a href="#">Library</a> <span class="divider">/</span>
  </li>
  <li class="active">Data</li>
</ul>

springway.ftl:

    [#ftl/]
    [#import "spring.ftl" as spring /]

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>

        <title>

        </title>

       <link href="[@spring.url '/resources/css/bootstrap-responsive.css'/]" rel="stylesheet" type="text/css" media="screen"/>
        <link href="[@spring.url '/resources/css/bootstrap-responsive.min.css'/]" rel="stylesheet" type="text/css" media="screen"/>
        <link href="[@spring.url '/resources/css/bootstrap.css'/]" rel="stylesheet" type="text/css" media="screen"/>
        <link href="[@spring.url '/resources/css/bootstrap.min.css'/]" rel="stylesheet" type="text/css" media="screen"/>

        <script src="[@spring.url '/resources/js/bootstrap.js'/]" type="text/javascript"></script>
        <script src="[@spring.url '/resources/js/bootstrap.min.js'/]" type="text/javascript"></script>
      </head>

    <body ></body>
    </html>

3 个答案:

答案 0 :(得分:9)

您定义了错误的resourceLocation。

而不是

registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");

你应该做的

registry.addResourceHandler("/resources/**").addResourceLocations("/resources/**");

因为您的css文件夹位于资源文件夹中,所以您需要在/之后添加额外**,否则它将识别css文件夹,否则它将仅从资源文件夹加载,不会考虑子文件夹。

希望它对你有所帮助。

干杯。

答案 1 :(得分:2)

如果您使用的是Spring Security,可以考虑将此行代码添加到SecurityConfiguration类中,将webjars添加到授权请求列表中:

@Configuration
@EnableWebMvcSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
http
  .authorizeRequests()
  .antMatchers("/resources/**", "/signup", "/about").permitAll()
  **.antMatchers("/webjars/**").permitAll()**
  .anyRequest().authenticated()
    .and()
 .formLogin().loginPage("/signin").permitAll()
    .and()
//...
 .logout().permitAll();
} 

答案 2 :(得分:1)

如果您使用的是Spring Security,可以考虑将此行代码添加到SecurityConfiguration类中,将webjars添加到授权请求列表中:

@Configuration
@EnableWebMvcSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
   http
   .authorizeRequests()
   .antMatchers("/resources/**", "/signup", "/about").permitAll()
    **.antMatchers("/webjars/**").permitAll()**
    .anyRequest().authenticated()
    .and()
    .formLogin().loginPage("/signin").permitAll()
    .and()
    .logout().permitAll();
}