I compared Cucumber, Cucumber-JVM and JBehave. They are all meant for writing acceptance tests that are based on either features (Cucumber, Cucumber-JVM) or stories.
Cucumber's main disadvantages are that it's brittle when used via the Cuke4Duke Maven plugin in a pure Java environment since it requires maintaining its underlying Ruby (gem) infrastructure. It's also comparably slow and direct debugging isn't possible - you will need to attach a remote debugger instead.
JBehave is a very mature, pure Java alternative to Cucumber. It's output isn't quite as pretty as Cucumber's, but it's well documented, easy to use, and fast. There is native support for JUnit.
As of December 2011, you can now additionally use a pure Java version of Cucumber which is called Cucumber-JVM. It is just as fast and easy to use as JBehave, and it has native JUnit support. Unfortunately, it doesn't have any pretty HTML-based result output, not even the rudimentary offerings of JBehave, though this should be fixed in the coming months. It also lacks documentation. Its main advantage over JBehave is the support of features instead of stories.