you have an error in your mapping.
1. make sure what version of hibernate are you using
2. make sure the classpath (for building and for running) contains the same hibernate.jar (so it contains also the same DTD mapping document)
3. see that DTD document for allowed subelements/attributes of the "id" element. (mine from hibernate-3.2.2 forbids the usage of "param" element inside id -- see
http://www.hibernate.org/hib_docs/reference/en/html/mapping.html#mapping-declaration-onetoone for an example -- put the param element inside the "generator" -- you have closed the "generator" element.)
regards, m.