Alright. I found it thanks to this article Medium article. Basically I add to set the id to null before saving it, but because of the constraints on my Class I needed to have an id in the csv file for the csv parsing
So in the setup method I did :
public void setupNews(News news) {
news.setId(null);
newsRepository.save(news);
}
}