user182944
user182944

Reputation: 8067

Eclipse plugin for play 2

I am a beginner with Play2 framework and Scala.

Is there any eclipse play 2 plugin available?

If yes, then please provide me the link for the same. I am used to Eclipse and have never used Scala before;hence in a confusion like how and where to start from. Looking at the Play2 Doc, sems like working in command prompt IDE which is very difficult (though I have tried yet)

Please let me know the eclipse plugin for Play2 or some other IDE helpful for this.

Regards,

Upvotes: 0

Views: 2061

Answers (2)

andrewf
andrewf

Reputation: 1392

I had a brief try of Play development using Eclipse and the Scala Plugin. I personally found it awkward and not terribly helpful. (The errors which the IDE reported were not always the same as the ones that the Play compiler reported, for example.)

I’ve had a lot more joy using the Intellij IDEA IDE, with its Scala plugin. As with Eclipse the current version of IDEA does not have specific support for Play Framework 2, but it does have specific support for Scala.

The next version of Intellij IDEA, v12, will have explicit support for Play Framework 2: http://www.jetbrains.com/idea/nextversion/index.html#Frameworks_Support (but only in the paid-for ‘Ultimate’ edition, not in the free ‘Community’ edition).

Upvotes: 1

ajduke
ajduke

Reputation: 5057

There in no plugin as such for Eclipse.

Play! framework has nice set of tools for doing tasks such as following

  • creating new play project
  • running the project
  • deployment of the application
  • doing the continuous testing mode etc

Trust me, once you start using this, you gonna love it.

Beside you do not require any experience in Scala, as for Play framework you can use Java language, if you are comfortable with it (you can choose Java template while creating new Play project ) and also you can use IDE for syntax highlighting , code completion etc

Upvotes: 1

Related Questions