Sage-Bionetworks / sage-monorepo

Where OpenChallenges, Schematic, and other Sage open source apps are built
https://sage-bionetworks.github.io/sage-monorepo/
Apache License 2.0
23 stars 12 forks source link

Learn more about Spring Boot library #369

Closed tschaffter closed 2 years ago

tschaffter commented 2 years ago

The issue in #366 seems to indicate that my library is incorrect. In my app I can import the Jar of my library, but the app can't find the class BaseMapper the library is supposed to include. I looked at the Jar and the file BaseMapper.class exists (./BOOT-INF/classes/org/sagebionetworks/challenge/model/mapper/BaseMapper.class)..

tschaffter commented 2 years ago

I created a functional Spring Boot library that I use in a Spring Boot application. Here I simply import Java classes. The article listed above provide insights into advanced features. In particular, the example used is the creation of a REST API client library, which we may need in the future.

tschaffter commented 2 years ago

Done