luminus

2019-05-15T11:47:58.019400Z

hi

2019-05-15T11:48:41.020200Z

My uberjar stop after execution, main function not execute:/

2019-05-15T11:48:45.020400Z

any idea?

ballpark 2019-05-15T14:09:32.021Z

@kucerm2 sounds like the webserver isn't running for some reason

2019-05-15T17:36:04.024400Z

@ballpark lein run goes well, but java -jar uberjar.jar is executed and immediately exited before enter main function in package.core namespace.

ballpark 2019-05-15T18:29:15.025100Z

@kucerm2 JDK 8+? Are there any error messages?

2019-05-15T18:36:58.025500Z

@ballpark Jdk 8 no error :/

2019-05-15T18:38:02.027100Z

First line of main function is log message, but execution was no message only exit

ballpark 2019-05-15T18:39:56.028500Z

@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

2019-05-15T18:45:09.029500Z

@ballpark Thank you i will try it.