hi
My uberjar stop after execution, main function not execute:/
any idea?
@kucerm2 sounds like the webserver isn't running for some reason
@ballpark lein run goes well, but java -jar uberjar.jar is executed and immediately exited before enter main function in package.core namespace.
@kucerm2 JDK 8+? Are there any error messages?
@ballpark Jdk 8 no error :/
First line of main function is log message, but execution was no message only exit
@kucerm2 Hard to know. My recommendation would be to create a new leiningen project, with only a main function (gen-class, :main set in project.clj, etc.) with only a print statement. If that works, then compare the two
@ballpark Thank you i will try it.