I had the same problem: everything worked fine, closed, restarted Windows, started Eclipse (which loaded the last workspace when the last project was opened), but although there are no "errors" in the window, nothing starts when I do Alt + Shift + X, J (shortcut for starting a Java program).
The representation of a syntax error in the code correctly reports an error, as well as an error when the syntax error is fixed. Cleaning the solution had no effect.
Dropping to the command line, Maven compiles everything perfectly. Having looked at the Eclipse error log window, I found many warnings, but no errors. Finally, I tried to select Run> Run Ctrl + F11, and then he ran the program as accurately as possible. After that, the console displays the output as before, and now the shortcut Alt + Shift + X, J, as well as the shortcut Alt + Shift + X, T (for running JUnit tests) started working as before!
Now, after running a program or test, jumping to the console using Alt + Shift + Q, C works fine again. I can only conclude that for some reason the console was not initialized, but in addition to this, the code did not really execute, since the output of the file that the program generated also did not occur.
source share