--
You received this message because you are subscribed to the Google Groups "scala-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I'm curious; What is it that IntelliJ-IDEA 14 release doesn't do for you, which makes Scala development problematic?
Hey Simon,Thanks for your reply to my post.I understand these sort of discussions can come down to personal preferences (vi vs emacs anyone?) but my question was more about which environment works better (i.e. without bugs, compilation issues etc.) as opposed to overall functionality and features.I will try out Scala IDE for Eclipse as you suggest.
I understand these sort of discussions can come down to personal preferences (vi vs emacs anyone?) but my question was more about which environment works better (i.e. without bugs, compilation issues etc.) as opposed to overall functionality and features.
I get the impression this is one approach to using IntelliJ IDEA as well: never touch anything in IntelliJ except the editor and let SBT create the project files, so don't give IntelliJ the chance to mess stuff up.I'm not used to this approach to using an IDE.
intellij uses sbt to generate project files for it. the problem starts when i use both intellij and an external sbt for compilation. but i never investigated anything and just went with intellij = editor/refactoring, sbt = compile
I've never used SBT. I've heard quite a few nightmare-ish stories about it
here and elsewhere so I stay away from it. It sure seems like the tool
creates more problems than it solves!
--
Why not run with built in netty? Just sbt run, works really well for us...
--
You received this message because you are subscribed to a topic in the Google Groups "scala-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/scala-user/V1iD92Wyzjg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to scala-user+...@googlegroups.com.
Hi Dimitry,
It looks like you've thought this through. What I mean by sbt run, I was assuming you use playframework, but I guess you're not. Maybe you should let look into that sometime, sorry for the confusion! The run command in your project, if any, will probably not do what you want...
Jaap
On Friday, November 14, 2014 1:50:49 AM UTC+3, Jaap Taal wrote:Why not run with built in netty? Just sbt run, works really well for us...
1. Because this is the first time I've heard of it. (Maybe not the first at all but the first time someone points _me_ to it.)
2. Little googling found me this: http://stackoverflow.com/a/8639995/4247442 So while I'm happy with jetty (and I'm really happy with its speed and easy programmatic XML-less configuration) there's no reason to switch away.
3. Don't understand "just sbt run" but if you mean it would require sbt on production then that's too bad. And if you mean it's just easy to start it on dev machine under sbt, then AFAIR jetty had some sbt plugin too but I don't want it at all: during app startup I perform syncrhonous DB migrations, spawn thread for long-running asynchronous DB migrations, setup two socket servers for internal RPC API besides HTTP server, etc. Pretty lot of stuff. So I prefer having full control of what, when and how initializes in my Main. BTW I recall I had an idea of terminating/restarting my console app from under my local-deployer, but don't want to spend efforts for it now.