private EntityManager em;
@PostConstruct
public void initData(){
List<Mepo> mepi = new ArrayList<Mepo>();
mepi.add(new Mepo("John Smice", "This is my first Mepo, awesome isn't it ?"));
mepi.add(new Mepo("Poca Hontas", "Where are you John ?"));
for (Mepo mepo : mepi) {
em.merge(mepo);
}
LOGGER.info("Mepi repository initialized");
}