Hammad Ali Zaman
Hammad Ali Zaman

Reputation: 101

Can I develop Java Enterprise application in IntelliJ Community Edition?

I want to develop application in Java Enterprise and Google Web Tool using IntelliJ Idea Community Edition. Is it possible? Or I have to Buy Ultimate Edition.

Upvotes: 7

Views: 8570

Answers (2)

Vicrum Vuppalapaty
Vicrum Vuppalapaty

Reputation: 1

Configure a global library for your application server jars and add it to module dependencies.

Use this url: http://www.jetbrains.com/help/idea/2016.3/configuring-module-dependencies-and-libraries.html

Upvotes: 0

dotvav
dotvav

Reputation: 2848

You will be able to write J2EE/GWT code, compile it and unit test it in IntelliJ Community. But you won't be able to run and debug it in the editor. You will need to use the command line and/or third party scripts and configuration.

Upvotes: 1

Related Questions