Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One thing that I miss from Eclipse is that I can't run code for testing various things (think short main()) if some totally unrelated files in my project contain errors. I've read in FAQ that I can use Eclipse compiler with -proceedOnErrors argument but it still doesn't work. Temporarily fixing unfinished code to compile is not really what I want.

I should note that I use Scala plugin too but still majority of my code are Java files.

Thank you.

share|improve this question

1 Answer

up vote 5 down vote accepted

Well, you can do it. The important part, of course, that the class with the main function compiles.

There are two ways you can go:

  1. Compile the class that you want to run only (CTRL Shift F9). Run the main function with a right click. It will fail, but IntelliJ will automagically create a temporary running configuration for this main function. Now edit this configuration and uncheck the option to "Make before launch". Then go back to the file and launch the main as before.
  2. Go to the configurations screen, then Defaults and then Application pane. Uncheck the "Make before launch" option and then you're good to go, as in section one, for any main function you'll encounter/create in this project.
share|improve this answer
It's still not as easy as in Eclipse (I have to compile and run separately) but at least I don't have to fix whole project. Thank you. – woky Jun 2 '12 at 12:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.