Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring Boot project in IntelliJ community edition

I am new to IntelliJ Community edition. Can anyone help me with creating spring boot project in intelliJ Community edition. For ultimate edition there is spring-boot initializer but I cannot find anything for community edition. I followed this links but cannot find any solutions

  • "Create Spring Boot Project with IntelliJ Community (FREE) Edition in 5 mins"
  • "Getting Started with SpringBoot in Intellij IDEA Community Edition"
like image 869
Vaibhav More Avatar asked Sep 23 '19 04:09

Vaibhav More


People also ask

Can I use Spring Boot in IntelliJ Community Edition?

Additionally, IntelliJ IDEA Ultimate can help you develop full-stack web applications, thanks to its powerful integrated tools, support for JavaScript and related technologies, and advanced support for popular frameworks like Spring, Spring Boot, Jakarta EE, Micronaut, Quarkus, Helidon.

Is IntelliJ Community Edition enough?

The community edition is fine for basic Java development. It is suitable for desktop projects, and includes the visual GUI Builder, and also supports Maven and Ant build tools, JUnit and TestNG testing, Java and Android development, and rich editor support for Java and XML.


1 Answers

You can install a plugin called Spring Assistant: Spring Assistant Now you can use the initializer as: Using initializer Personally, however, I use Spring initializer at start.spring.io

EDIT: Adding run configuration
Select Edit Configuration from the Run menu Run menu Now in the dialog box, lick on the + button and select Application. Run Configuration dialog Now you just need to provide the name of the main class. You could click on the browse button(...) to get a list of files having main(...). Select class with main()

like image 126
Prashant Avatar answered Oct 05 '22 06:10

Prashant