spring-boot 读取不到静态资源

作为一名front end, 在使用spring boot 映射静态资源的时候, 发现无论怎么写

registry.addResourceHandler("/**").addResourceLocations("file:/home/ubuntu/web/");

registry.addResourceHandler("/web/**").addResourceLocations("file:D:/web/");

上面代码是正确的格式哦

无论怎么写,甚至写在resource 中都读取不到文件, 但是在另一个项目中就可以, 而且 

postman请求的错误是"error": "Method Not Allowed", "message": "Request method 'POST' not supported",

感到很奇怪,理论上不是应该先找文件的嘛, 怎么变成api请求了,

比较后发现是因为一个错误的注解导致的,

@RestController("/helloworld"), 导致全局处理了所有请求, 

原因不详,恕前端小白了解的不深入,

正确返回的错误应该是这样的才对嘛, "status": 404,    "error": "Not Found","message": "No message available", 

然后就可以挂载静态资源啦

~


你可能感兴趣的:(springBoot)