添加拦截器并设置资源路径

Spring-boot添加Interceptor进行认证验证

添加设置

@Override
	public void addResourceHandlers(ResourceHandlerRegistry registry) {
     

		String os = System.getProperty("os.name");
		if (os.toLowerCase().startsWith("win")) {
       //如果是Windows系统
			//  /**表示在磁盘目录下的所有资源会被解析为以下的路径
			registry.addResourceHandler("/**")
					.addResourceLocations("file:C:/myResource/")//绝对路径目录
					.addResourceLocations("classpath:/META-INF/resources/");
					
		}else{
     //linux和mac系统
			registry.addResourceHandler("/**")
					.addResourceLocations("file:/myResource/")
					.addResourceLocations("classpath:/META-INF/resources/");
					
		}
		super.addResourceHandlers(registry);
	}

你可能感兴趣的:(#,Spring)