Hibernate uses JDBC Drivers to connect to relational databases. Cassandra is a ColumnFamily based, which is A relational database (distributed one).
The problem is to find a proper JDBC driver for your case. Here is a project I Googled:
http://code.google.com/p/sql4d/
It's not active currently, but you got the idea of how to find the right one.
Having object-relationship mapping through Hibernate you won't have to worry about the specific dialect Cassandra use and just enjoy the ride.
Well.. that's how it sounds theoretically.
Yet another way is using Pelops library for usage of Cassandra. More info on it HERE.
Getting started with Cassandra - a rather short post on the matter.
Hope you find of your answers there!