Package com.mossle.forum.domain

Examples of com.mossle.forum.domain.ForumTopic


    }

    @RequestMapping("forum-post-view")
    public String view(@RequestParam("id") Long id, Model model)
            throws Exception {
        ForumTopic forumTopic = forumTopicManager.get(id);
        model.addAttribute("forumTopic", forumTopic);

        return "forum/forum-post-view";
    }
View Full Code Here


    @RequestMapping("forum-topic-input")
    public String input(@RequestParam(value = "id", required = false) Long id,
            Model model) {
        if (id != null) {
            ForumTopic forumTopic = forumTopicManager.get(id);
            model.addAttribute("model", forumTopic);
        }

        return "forum/forum-topic-input";
    }
View Full Code Here

    @RequestMapping("forum-topic-save")
    public String save(@ModelAttribute ForumTopic forumTopic,
            @RequestParam Map<String, Object> parameterMap,
            RedirectAttributes redirectAttributes) {
        ForumTopic dest = null;
        Long id = forumTopic.getId();

        if (id != null) {
            dest = forumTopicManager.get(id);
            beanMapper.copy(forumTopic, dest);
        } else {
            dest = forumTopic;

            String userId = SpringSecurityUtils.getCurrentUserId();
            dest.setUserId(Long.parseLong(userId));
            dest.setCreateTime(new Date());
        }

        forumTopicManager.save(dest);

        messageHelper.addFlashMessage(redirectAttributes, "core.success.save",
View Full Code Here

TOP

Related Classes of com.mossle.forum.domain.ForumTopic

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.