Wikipedia has extensive tabular comparisons here: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks.
It might be a good reference.
EDIT: (The OP asked for a little more.)
The question of when to choose one over another depends on many factors. Here are a few:
- Your own familiarity with the underlying technologies. You might be better in Ruby than Java or vice versa.
- The size of longevity of your system. Many people say static languages like Java are easier to maintain in the long run.
- Performance characteristics. Some are tuned better than others. You might not need massive scale, but when you do, choose a framework that considers it.
- Platform and Third-Party Libraries. JVM and .NET based frameworks have massively rich platforms and can make use of third party libraries for just about everything.
- Number of technologies to learn. Frameworks like Node.js are popular because they have the same server-side language (JavaScript) as on the client-side (JavaScript).
- Maturity. Is it buggy?
- Popularity. If you will need to get engineers to work on projects with you, how easy will they be to find? How many people are available to answer your questions on SO when you get stuck?
- Modernity. Would you be okay writing in C or use CGI?
Other bullets: Ease of caching, logging, database integration, etc. It comes down to matching capabilities with your own needs.
All that said, your original question did ask for comparison links. While there are several in the Wikipedia article, here are some others:
I'm aware most of the comparisons seem to be within a group (JVM-based, JS-based, PHP-based, "Frameworks of the Future" and so on. That seems to be the way of things for now. There is room for many kinds of frameworks.