第一次使用bootstrap

因为自己写的页面太丑了,而且,很麻烦。

君子性非异也,善假于物。

bug1:

No mapping found for HTTP request with URI [/css/bootstrap.min.css]

这个我真的醉了,一开始bootstrap和jquey都用不了,花了我好多时间,一直以为是文件导入的路径不对,或者是xml文件上面的连接写错,后来是发现,是静态文件都被拦截了,而我没有设置配置文件。

我是用注解来配置的。

/**
 */
//不写注释的话图片 和下一页样式出不来
@Configuration
public class MyWebAppConfigurer extends WebMvcConfigurationSupport {
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        //一定要加上面的代码,如果不加意味着static 不是静态资源,MVC会把他当成一个请求
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        registry.addResourceHandler("/uploadImages/**").addResourceLocations("file:F:/temp/");
        super.addResourceHandlers(registry);
    }

 

你可能感兴趣的:(java)