Caused by: org.hibernate.AnnotationException: @Column(s) not allowed on a @OneToOne property:

Caused by: org.hibernate.AnnotationException: @Column(s) not allowed on a @OneToOne property: 

Solution :

Instead of using

@Column(name="columnName")
Use 
@JoinColumn(name="columnName")