JPA by default provide no cascade feature. So in my case cascade annotation was missing, so I defined it with the @ManyToOne annotation. Please defined cascade type along with @ManyToOne
Ex:
@ManyToOne(cascade = CascadeType.PERSIST)
private Article article = new Article();