Yep. Generally, I find that long constructors are a symptom of classes having too many responsibilities. The exception being those classes whose purpose is to switch between a variety of codepaths, essentially dispatching to other collaborators. In such situations, however, it's worth looking to see if you really have a situation that could be appropriately handled with a mapbinding or setbinding.
I've seen "Config" options whose entire job is to shorten constructors, but generally I regard this as pushing the problem around, not solving it, because the problem isn't hard-to-read code - that's just the symptom.
C.