String tag = request.getParameter("tag");
try{
Recipe r = (Recipe)request.getSession().getAttribute("recipe");
Tag t =new Tag();
t.setName(tag);
t.setRecipeId(r.getRecipeId());
tagService.addTag(t);
request.getSession().setAttribute("recipe", r);
}catch(Exception e){
return "false";
}