You need to explicitly define the sequences in your entity class:
@Entity
public class Entity {
@Id
@SequenceGenerator(name="seq",sequenceName="your_seq")
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="seq")
private Integer id;
}