@PostConstruct
public void init()
{
Category thriller = new Category();
thriller.setId(1L);
thriller.setName("Thriller");
thriller.setSeoKey("thriller");
thriller.setDescription("Thriller is a broad genre of literature, film, " +
"and television programming that uses suspense, tension and excitement " +
"as the main elements. Thrillers heavily stimulate the viewer's moods " +
"giving them a high level of anticipation, ultra-heightened expectation, " +
"uncertainty, surprise, anxiety and/or terror.");
Category fantasy = new Category();
fantasy.setId(2L);
fantasy.setName("Fantasy");
fantasy.setSeoKey("fantasy");
fantasy.setDescription("Fantasy is a genre of fiction that commonly uses " +
"magic and other supernatural phenomena as a primary element of plot, " +
"theme, or setting. Many works within the genre take place in imaginary " +
"worlds where magic is common.");
categories.add(thriller);