当我这样写路径时,无法获取spring boot静态文件:
private static final String FILE_PATH = "/resources/data/user.json";
结果是FileNotFound。我应该如何写路径?
尝试使用ClasspathResource
Resource resource = new ClassPathResource("/static/data/user.json"); File file = resource.getFile();