Vad1mo
Vad1mo

Reputation: 5545

what are the differences in IntelliJ vs. eclipse regarding groovy development

I am new to IntelliJ coming from Eclipse(mainly Java) and I am trying to find out what Groovy features are included in one IDE that are missing in the other.

Example:

I would like to gather informations about both IDEs regarding groovy support. This is not about which IDE is better but what are the differences.

Upvotes: 0

Views: 543

Answers (1)

ngandriau
ngandriau

Reputation: 350

I have been using idea for groovy development for very long time and its support is great. Among the little details I know and like:

  • Idea spock support permit to:
    -- indent the "given:", "when:", and other "then:" labels which is great.
    -- you can even have then "colorized as other groovy keywords with the spock plugin"
    -- idea also indent recognize the data driven column title as variable for the spec code and indent this tables
    -- and idea also support creation of new specification with the "navigate to test" shortcut. "Ctrl+Shift+T"

  • Idea also support logger generated by ats like "@Log"

Upvotes: 1

Related Questions