11

I have a project whose core domain is dramatically changing. It's possible to use 50% of the core functionality from this site and just add the 50% new functionality, but I am starting to consider that maybe it might be faster to simply redo the product in Rails. Development speed is very important.

There are some things I really like about java - the performance and scalability are very good. I am not a crappy Java developer, so my apps tend to run very well - better than the Rails sites I've seen. I've always accepted the idea that people probably just throw a little more money at the problem when it comes to using Rails, which probably works itself out in the end because of the insane productivity benefits.

I am actually quite agile with Java. I know it will still take me longer to add a basic entity to the system, but I am quick at it and I don't mind it that much. At least it's easy and straight-forward to do.

What I do mind is:

  • having to start/stop the server just to fix a route, lazy load exception, controller is going to wrong view, etc.
  • putting up with the fact that unit/integration tests sometimes have different results than the production environment (because annotations on controllers can't be tested, or lazy-loading exceptions occur during asynchronous service calls, or things like that). Knowing if your Jackson is marshaling your data properly is another Tomcat-only thing because it's handled by Spring. There are lots of things that go wrong after you have tested all that you can, and this frankly annoys the crap out of me.
  • putting up with the occasional maven/classloader problem that doesn't rear its ugly head until you deploy into tomcat. It gives the false impression that everything is "a-okay" when you are in your IDE.
  • having to put more effort to do database migrations than the ruby people ever have to.
  • putting up with framework bugs in Spring that block (it's happened about 5 times on this project since 2009) or Hibernate. I also don't like upgrading Spring Security and having them constantly change the configuration, apis and tag libraries over and over again. This is annoying.
  • wasting so much time uploading 58 MB war files to the server! These take me 12 minutes to upload whenever I need to deploy changes. If I forgot to do 'mvn clean' before I upload, Spring might complain that 2 beans exist with the same name because I moved one to a new package... and then I have to re-upload the whole stupid war file again. Why isn't "clean" run by default whenever you do 'mvn package' for?!?! Sometimes these frameworks and tools use the stupidest default settings. This is just so common in the Java world.
  • Having to spend hour(s) to figure out where a framework wants to plug-in your own custom implementation for something. This is very annoying. You can spend 2 hours sifting through Google and crappy documentation trying to figure out how to override Spring Security's authentication mechanism for example... and then spend only 5 minutes writing the actual implementation. Of course, they wrote paragraphs upon paragraphs explaining the architecture and how awesome it is, but nobody cares. For something so common, why not just give example source code and be done with it?
  • Waiting 10-15 seconds for Spring to start up whenever you want to run your integration tests. This is a drag.

There are a few things I like about Java though. Role-based access is very easy to do with Spring Security. Authentication is never that big of a gain, but I like the implementation inside of Spring.

I also like Spring's form-backing objects and @ModelAttribute. These are huge wins when it comes to controllers, and I don't know if Rails can do these things. I honestly never liked passing request parameters around in every action - Spring MVC is actually a lot easier to use when it comes to this common bloat.

Being able to cache really massive structures in memory and have them stay in memory when you start the application is also highly desirable, especially for this application actually. I have an in-memory thesaurus and grammar checker that needs to get called hundreds of times per request, so in memory is pretty much the fastest option for me.

Even still, I think I could rebuild what I have in 2-3 weeks, and then add all of the new features in a few weeks using rails.

On the bright side, all of the really well-designed css, html and javascript could be ported over with very little problems.

I'd appreciate some advice on the subject before I continue.

PS: I could also go to Spring-ROO... but that would also be a considerable rework. I was never using JPA - I was using Hibernate directly. I am also not using JSP's - I am using Freemarker.

Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338
egervari
  • 22,372
  • 32
  • 121
  • 175
  • 1
    To get rid of one of your annoyances you can rsync up an exploded war to the server and that'll only upload the changes to your code. The libs won't get uploaded again as they haven't changed. I do this with Jetty. – NA. Apr 25 '11 at 10:43
  • 1
    what tool takes care of this resyncing? Would it also stop the server, resync and start it up again automatically? :) – egervari Apr 25 '11 at 11:25
  • 1
    It's just a simple bash script I wrote that uses [rsync](http://rsync.samba.org/). The script could certainly restart/redeploy automatically too, if that functionality was added... – NA. Apr 26 '11 at 11:41

5 Answers5

10

It takes more time to get good at Ruby, and Rails. I worked as an independent contractor as Spring and Hibernate expert myself, but I felt strangled by java and it's web frameworks so I decided to learn Ruby on Rails.

I would advice you to learn Ruby, from what I read you would probably master it, although get pretty frustrated with the very different way the use the ORM. I had issues with it, used to working on aggregate roots in Hibernate to the ActiveRecord one class one table kind of pattern. But hey, you could easily try out MongoDB to have some real fun.

Ruby is

  • less code
  • it's fast and scalable (slower than java on the specific tasks, but you get rid of stacks of layers.)
  • the problems are more often; which gem should I use. Luxorious!
  • a unique, big, sharing and caring open source community
  • nice frameworks, as Rails and Sinatra
  • powerful.
  • fun!

Would I advice you to do the project you describe in Ruby.

NO.

Not if speed of development matters. You will be slower, trust me. There's a lot to learn, it's conventions are not familiar to a java programmer and when you get stuck, lots of hours fly by.

The best option would be to hire a senior ruby developer to pair up with you and teach you. Be a good apprentice and you'll learn fast. Faster than me, I had to learn most by myself, which is really inefficient.

Good luck!

oma
  • 38,642
  • 11
  • 71
  • 99
  • Well, I did play around with Rails 3 a week ago for the hell of it. In 8-10 hours, I did authentication with password salting, 3 crud screens that were nested, used layouts, a main menu screen, added custom routes, and secure controllers. It seemed easy enough for me. Ruby was not hard to learn - I already know Scala too and I'm quite good at that language as well. – egervari Apr 25 '11 at 09:58
  • Honestly, even though I had to build my own login screen and salting, etc. with Rails, I think I was faster. If you want to build a custom password salting process in Spring Security, you have to first go through all the crappy documentation to figure out what you need to implement. It's like 2 hours of investigative work in order to write a 3 line method implementation. Frankly, I didn't mind making things from scratch with Ruby/Rails - it actually seemed faster. Imagine that. You don't have to read any documentation to build a custom authentication method - you just write it. – egervari Apr 25 '11 at 09:59
  • I also really enjoyed not having to restart the stupid server for every stupid thing. I only get this benefit when I do HTML/Freemarker/Javascript. Anything that is a class needs a recompilation. This really made things a joy. Don't get me wrong - I actually didn't like how I could point to variables that didn't exist because of a typo... this has got to be one of the most annoying things in dynamic languages. Even still, it just might be a small price to pay for all the benefits. – egervari Apr 25 '11 at 10:00
  • 1
    if you're familiar with Scala too, then Ruby won't be a problem :) BDD is strong in the Ruby world, testing is a better safeguard than any compiler. Using RubyMine, you also get a a great IDE, getting autocompletion and avoiding typos. Awesome ff you like IDEA with java. – oma Apr 25 '11 at 13:25
  • You could of course try Lift with Scala, but I wouldn't know much about it. This SO Q is relevant: http://stackoverflow.com/questions/2683914/why-would-i-use-scala-lift-over-java-spring – oma Apr 25 '11 at 20:04
5

Check out Playframework. Its fun to develop, and you can use your Java experience to develop features way quicker (given than you have 2 weeks) than any other Java-based frameworks out there.

You do not have to start/stop a server. You fix the code in Eclipse and hit refresh on the browser. No dealing with WAR files till you have to actually deploy in production. Do everything from within Eclipse. Easily perform TDD process if thats what you want as you develop code. From an architecture standpoint, it is a fully stateless, RESTful framework from the get-go. Fully JPA compliant (even for NoSQL like Mongo), so you will not have to write complex JDBC code. On the front-end, it has a full featured templating engine, using Groovy as a templating language.

I can go on and on, but I'd recommend going through the site and take a look.

lobster1234
  • 7,679
  • 26
  • 30
3

You should take a look at Grails.

You can continue to leverage a lot of your Java code but use a scripting language (Groovy) and many of the paradigms of Rails. E.g. lots of time saved by using convention rather than configuration.

Grails is used by some pretty big web sites E.g. BSkyB the UK satellite broadcaster.

It doesn't really help with some of the startup speed aspects. If you really prize development speed that much - get a faster machine or buy an SSD and fit in your machine. If you work for a big company - sell it to your manager as the cheaper option (E.g. buy a $2000 machine rather than spend 3 weeks rewriting something to save 10 minutes a day).

Java will scale better in the long run than Rails. The Hotspot technology in the JVM is one of the wonders of modern technology.

Fortyrunner
  • 12,702
  • 4
  • 31
  • 54
  • Not sure if I'd choose Grails over plain JRuby on Rails or Play, but +1 for the comment about Hotspot technology. The JVM is a beast of a platform -- a unified vision the interpreted languages can't really bring to the table. Plus the application servers are pretty crazy (Websphere Application Server for example... so smooth deploying many apps). If they made the UI cuter & more friendly (it's difficult to use mainly because you're supposed to buy extra tools) and gave it away for free, I think a lot of the open source guys would change horses immediately. – jm0 Feb 20 '14 at 15:22
2

I would still give Spring Roo a shot, it will the same rework as with Ruby on Rails or Grails or even less, but you will still stay with something that you are familiar with, which is often the biggest consideration

It has the scaffolding concepts of Ruby on Rails and Grails, but it gives you zero lock in code, just simple, well written (massive use of AOP is matter of taste though) of Spring + Hibernate / JPA (I think you can use Freemarker for the views, Roo has a miriad of plugins, but I'm not 100% sure)

Eran Medan
  • 44,555
  • 61
  • 184
  • 276
2

Also worth checking out is Tapestry5. It allows you to make code changes on the fly (no server restart required) and is easily the fastest & leanest framework to develop with in Java I've used.

Joel
  • 29,538
  • 35
  • 110
  • 138