ext.setTitle(title);
ext.setAuthor(author);
ext.setDescription(description);
ContentTxt t = new ContentTxt();
t.setTxt(txt);
ContentType type = contentTypeMng.getDef();
if (type == null) {
throw new RuntimeException("Default ContentType not found.");
}
Integer typeId = type.getId();
String[] tagArr = StrUtils.splitAndTrim(tagStr, ",", null);
c = contentMng.save(c, ext, t, null, null, null, tagArr, null, null,
null, null, null, channelId, typeId, null, user, true);
log.info("member contribute save Content success. id={}", c.getId());
return FrontUtils.showSuccess(request, model, nextUrl);