Hi Eyvgenij,
here's the situation. My colleagues and I are currently working on a Spring Boot project that uses Oracle. However, although one of the developers has managed to install Oracle 11 on his machine, the 4 others haven't,
probably because of company-wide security policies (who knows). Instead of spending precious development time figuring out why Oracle won't install, we've decided to use H2 instead for development purposes.
The schema-h2.sql script in ou project creates a table containing a BLOB column (when the Spring Boot Profile is "h2").
I would like to store a sample json file (200 lines) in the in-memory DB, to test the GET REST request, during development.
For instance,
GET /myservice/<invoice id>
returns
{ "id": 2, "invoicename" : "123", etc. }
Cheers,
Phil