This example demonstrates how to implement a custom Spring Resource Loader to idiomatically load blob resources (such as images or files) at application startup from an arbitrary storage backend.
In this example our storage backend is an Oracle Database table using a BLOB column, but the design applies to any storage backend with a programmable API.
- DatabaseResource.java defines custom Resource type extending AbstractResource
- DatabaseResourceResolver.java implements the Spring ResourceLoaderAware and ProtocolResolver interfaces to provide a Spring Compnent capable of instantiating DatabaseResorce objects.
- DatabaseLocation.java is a data class that maps a Resource location to a BLOB in the database.
- Java 21+, Maven
The sample provides an all-in-one test leveraging Testcontainers and Oracle Database to do the following:
- Start and configure a database server using Testcontainers
- Load Spring Resources from the database
- Verify the resources are loaded and accessible
You can run the test like so, from the project's root directory:
mvn test