which branch is the working branch #21
-
I want to run it in my IntelliJ to run it and learn. I tried to clone 2024-springio but it says jdk mismatch for 22 jdk and 8.7 grade which I am not sure is the issue. Please give any answer that would provide some tips for me to run it in my IDE successfully! Thank you!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The working branch is the default branch that your git client will check out by default during clone: Even though the |
Beta Was this translation helpful? Give feedback.
The working branch is the default branch that your git client will check out by default during clone:
main
, you don't need to do anything else.The "conference branches" were created for those past events and not maintained anymore (they are kind of snapshots).
Even though the
2024-springio
branch should work with Java 22, I would recommend checking outmain
and using Java 23. The easiest way to import it to IntelliJ is simply runningidea .
in the project root. The easiest way of executing is./gradlew bootRun
as the readme suggests.