Java – How to open browser after the run button clicked in Intellij Idea CE

browserintellij-ideajava

I have simple task in Intellij Idea CE, after clicking Run(Shift+F10), browser must open some page, for example http://localhost:8080. How to do that?
I can't find reliable option in Edit configurations.

Best Answer

In the "Edit configurations" there's a checkbox for "Start browser" under the "Server" tab in a server configuration.

enter image description here

Related Topic