DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • How To Approach Dependency Management in Java [Video]
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • From Repetition to Reusability: How Maven Archetypes Save Time
  • Using Python Libraries in Java

Trending

  • MuleSoft IDP: Enhancing Efficiency and Accuracy in Data Extraction
  • What Is Plagiarism? How to Avoid It and Cite Sources
  • Feature Flag Debt: Performance Impact in Enterprise Applications
  • Run Gemma 4 on Your Laptop: A Hands-On Guide to Google's Latest Open Multimodal LLM
  1. DZone
  2. Coding
  3. Java
  4. Headless Setup of a Java Project with Tomcat, IntelliJ Community Edition and Tomcat Maven Plugin

Headless Setup of a Java Project with Tomcat, IntelliJ Community Edition and Tomcat Maven Plugin

Use IntelliJ Community Edition, Tomcat and Tomcat Maven Plugin.

By 
Taimur Mirza user avatar
Taimur Mirza
·
Dec. 05, 14 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
46.9K Views

Join the DZone community and get the full member experience.

Join For Free

IntelliJ is a powerful IDE for Java developers. It has an ultimate edition and community edition. The ultimate edition provides all features that any developer can expect from IDEs of these days thus it is not free.

We also have community edition which is more than sufficient for most of real life Java projects. In this tutorial I will give a walk through of typical steps to setup web-based Java project with Tomcat.

I will use following versions:

1  IntelliJ 14 Community Edition (Free version)
2  JDK 8
3  I setup this on my mac OS X Yosemite (10.10.1)


When we install IntelliJ 14 Community Edition, it needs JDK6 JRE to start so you can install it. This is bit annoying but it is not stopping us to leverage Java 8 features in our real Java project.

Now in maven pom.xml, add following

<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>myProject</path>
</configuration>
</plugin>
</plugins>
</build>

Make sure that we do not have jsp-api, el-api or jboss-el dependencies in our pom file as tomcat has these libraries already in its /lib directory.

Go to “Run” menu and click “Edit Configurations…”, click “+” icon at the top left and select “Maven” as depicted in the following diagram.

Now in the first “Parameter” tab enter “Tomcat” in the name field to recognize these settings. In the “Command Line” enter “tomcat7:run” as depicted in the following diagram.

Click “Runner” tab and provide appropriate VM options as per your need and select appropriate JRE. I chose JDK 8 and provided environment variables (optional) required for my project as depicted in the following diagram.

Click “OK”. Now click “Maven Projects” from right pane as shown in the following diagram and select tomcat7 from plugins and click reimport icon to update everything.

Finally click green “Run” button to start tomcat and access your app using http://localhost:8080/myProject.

Enjoy development with pleasure!

Java (programming language) Apache Tomcat intellij Apache Maven

Opinions expressed by DZone contributors are their own.

Related

  • How To Approach Dependency Management in Java [Video]
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • From Repetition to Reusability: How Maven Archetypes Save Time
  • Using Python Libraries in Java

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook