728x90
반응형
mapper
<insert id="insertComment" parameterType="CommentVo" parameterMap="CommentParameterMap" useGeneratedKeys="true" keyProperty="가져올pk컬럼의 vo에 적은 것">
INSERT INTO comment (post_no, co_mb_no, co_content, co_datetime)
VALUES (#{postNo}, #{memNo}, #{content}, now())
</insert>
dao
// 댓글 추가
public void insertComment(CommentVo comment) {
this.sqlSession.insert("CommentDao.insertComment", comment);
System.out.println("추가된id:"+comment.getComNo());
}
https://awse2050.tistory.com/35
728x90
반응형