IntelliJ Community Edition and Spring Boot??? Follow
Answered
Can I run Spring Boot applications in IntelliJ Community Edition? I have a generated Spring Boot project from Spring Initializer website. I want to import in IntelliJ Community Edition and run it. Please reply ASAP.
Please sign in to leave a comment.
IntelliJ IDEA Community doesn't provide Spring Boot support or application servers support, see https://www.jetbrains.com/idea/features/editions_comparison_matrix.html .
You can still use it for Spring Boot applications, but many features will not work and you will have to deploy/run your code using Maven or Gradle.
Ok. But will I be able to run the Spring Boot application in IntelliJ Community Edition? Or will the program not run Spring Boot apps at all? Please revert.
You can run them using the Application run/debug configuration or via Maven/Gradle (like you would do in the command line, outside of any IDE).
Thank you for the information sir!