刷新 SparkJava 服务的静态文件

Refresh static files served by SparkJava

我正在使用 Spark Java 做一个项目。在服务器端,创建了一些图像,我希望它们在客户端可用。由于我有一个静态内容目录,在服务器端创建图像后,我将它放在该目录中。但是,除非我重新启动服务器,否则此文件不可用。我想必须有一种方法可以在运行时刷新 Spark Java 的静态目录文件,以便可以满足运行时创建图像的请求。对吗?

谢谢!

我已经通过将 png 编码为 Base 64 并将其作为响应发送给客户端来解决它。

documentation 说:

If you use staticFiles.location(...), meaning you keep your static files in the classpath, static resources are copied to a target folder when you build your application. This means you have to make/build your project in order to refresh static files. A workaround for this is to tell Spark to read static files from the absolute path to the src-directory.

所以请改用staticFiles.externalLocation()