FAQ 게시판 CRUD 구현
MyBatis의 매퍼 XML select * from faq_tb select * from faq_tb where id = #{id}; UPDATE faq_tb SET title = #{title}, content = #{content} WHERE id = #{id} INSERT INTO faq_tb (type, title, content, created_at) VALUES (#{type}, #{title}, #{content}, now()) delete from faq_tb where id = #{id} XML 바탕으로 FaqRe..