* 保存action.
*/
public void saveComment() throws Exception {
System.out.println("saveComment," + appType + "," + appId);
try {
Comment comment = new Comment();
comment.setAppType(appType);
comment.setAppId(appId);
comment.setParentId(parentId);
comment.setCreateTime(new Date());
comment.setComment(commentContent);
commentService.saveComment(comment);
} catch (Exception e) {
writeToPage("0");// 失败
}
writeToPage("1");// 成功