Rolando
Rolando

Reputation: 62596

How do I import jhipster project into intellij?

I have a jhipster project I want to import into IntelliJ Ultimate latest version 2016.3.2. The problem is, after I run my yo jhipster command, when I try to "Import from Existing Project" in IntelliJ 2016, after I select "Maven Project", its not letting me hit the next button to get past that dialogue box. I am running Windows. What is going on?

What is the proper way to import this project??? The youtube video they have on their main site is outdated and does not work at all.

Upvotes: 0

Views: 4240

Answers (1)

Dror
Dror

Reputation: 5495

To start a #Jhipster Maven project on Intellij Community (ver 2017.3.3) :

1 start intellij community

2 import the maven project (if you havent done so already), as explained here: check out the section: Importing a Maven project

3 create a MAVEN configuration by :

  • go to the edit configuration option, in the drop down on the top toolbar:

enter image description here

  • then press the green + (plus sign) and choose MAVEN from the vertical toolbar on the left Set a meaningful name in the NAME field and point the working directory to the folder of your project's POM.xml. Press OK

enter image description here

  1. you will see the name you gave in the previous stem on the drop down mentioned in step 2 (select from the drop down it if it is not already selected) then press the RUN button to the right (a Green "play" button).

This will run your project

HOWEVER, it will not necessarily run the FRONT-END angular app.

To run the angular client : open a terminal (CMD on windows) and go to the base folder of your jhipster project.

Then type:

yarn start

(This should start your frontend)

Upvotes: 2

Related Questions