Its a gradle project using spring MVC over Tomcat.
A developement environment for Openspecimen is tricky:
The basic software and its setup is described in this guide:
Eclipse is also capable of doing it:
So if you want to do it search for something along the lines of:
Setup gradle project with spring mvc tomcat eclipse
and find a similar guide that describes the steps for eclipse like this one:
https://360ai.org/article/626253.html
From there its trial and error
Notes:
The versions are important and some settings are surely different for Openspecimen but the basic stack is working and Krishagni uses Intellij themselves (as u can see by some lost .idea folders).
As stated it has no main since the “main” is the servlet within tomcat.
I did not need a full dev environment so far so i did not set one up. Expect a few days to at most 3 weeks of trial and error based on how much you know about Spring and Tomcat already.
Some more infos on caveats:
Do not use any Spring Boot guides since this technology is very different but looks the same. Namely the difference is that the present Openspecimen source only uses MVC and not boot. This means all the Hibernate mappings (HIbernate just allows you to make a Java class out of an SQL query and map it to a certain db table or field) are written manually.