registry.addResourceHandler("/img/singerPic/**").addResourceLocations( "file:"+System.getProperty("user.dir")+System.getProperty("file.separator")+"img" +System.getProperty("file.separator")+"singerPic"+System.getProperty("file.separator") );这个代码是什么意思
时间: 2023-06-01 21:04:46 浏览: 187
这是一个 Java SpringBoot 框架下的配置,注册一个用于处理请求的资源处理器,用于访问 "/img/singerPic/**" 请求路径下的文件资源。该资源路径对应的是 "file:" 协议下的一个绝对路径,该路径就是程序的工作目录下的 "img/singerPic" 目录。
阅读全文