aircraft
aircraft

Reputation: 26886

Error: Application Server not specified - IntelliJ IDEA

When I configure the Tomcat in the IntelliJ IDEA, there have a issue I don't understand.

Error: Application Server not specified

Before asking the question, I have searched the SO, found the related post: How to configure correctly the JBoss in the Intellij IDEA? I get Error:server instance not specified

But it is not fit me.

The snapshot:

enter image description here


Attention

I did not Configure the Application Server, because I can not choose the hidden directory path.

Upvotes: 2

Views: 15288

Answers (2)

Alex Minjun Yu
Alex Minjun Yu

Reputation: 3707

On the top where it says:
Application server: [ text box ] configure

You need to specify the location of your local tomcat installation.

UPDATE

Per comments and updates, intelliJ somehow cannot locate tomcat installed under hidden folder.
Simply typing out the absolute path should work.

Upvotes: 3

Robert Leggett
Robert Leggett

Reputation: 982

  1. Click on "Run"
  2. Click on "Edit Configuration"
  3. Click on "+"
  4. Scroll down to "Tomcat Server"
  5. Select "Local or Remote"
  6. Select "Configure" next to Application Server
  7. Click "+"
  8. Configure it to your extracted Tomcat Server

https://www.jetbrains.com/help/idea/2016.3/defining-application-servers-in-intellij-idea.html

Upvotes: 0

Related Questions