selectBoardList() {
+ return this.boardMapper.selectBoardList();
+ }
+}
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
new file mode 100644
index 0000000..461bc9a
--- /dev/null
+++ b/src/main/resources/application.properties
@@ -0,0 +1,34 @@
+
+
+#Mysql Database 연결 설정
+spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
+spring.datasource.url=jdbc:mysql://bit-academy.zenice.kr:3306/bitacademy04?useSSL=false&characterEncoding=UTF-8
+spring.datasource.username=team04
+spring.datasource.password=team04-LHWNSK
+spring.datasource.hikari.maximum-pool-size=10
+spring.datasource.hikari.minimum-idle=2
+spring.datasource.hikari.connection-test-query=select now()
+
+#DevTools 설정 - AcademyApplication.java 에 추가 bean 등록 확인
+spring.devtools.livereload.enabled=true
+spring.thymeleaf.cache=false
+spring.thymeleaf.mode=HTML
+spring.thymeleaf.templates_root=src/main/resources/templates/
+
+#Logging level 설정
+logging.level.root=warn
+logging.level.com.bit.academy=debug
+logging.level.jdbc.sqlonly=debug
+logging.level.jdbc.resultsettable=debug
+logging.level.org.springframework.web=debug
+logging.level.org.springframework.session=debug
+
+
+
+
+#MyBatis mapper location
+mybatis.type-aliases-package=com.bit.academy.mapper
+mybatis.mapper-locations=mapper/**/*.xml
+
+# tomcat port 변경
+server.port=80
\ No newline at end of file
diff --git a/src/main/resources/mapper/BoardMapper.xml b/src/main/resources/mapper/BoardMapper.xml
new file mode 100644
index 0000000..4d7ffaa
--- /dev/null
+++ b/src/main/resources/mapper/BoardMapper.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+ UPDATE qna
+ SET
+ qna_context = #{qna_context}
+ WHERE qna_no = #{qna_no}
+
+
+
+
+ DELETE FROM qna WHERE qna_no = #{qna_no}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/delete_after.html b/src/main/resources/templates/board/delete_after.html
new file mode 100644
index 0000000..63a352e
--- /dev/null
+++ b/src/main/resources/templates/board/delete_after.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+ Board Insert After
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/insert.html b/src/main/resources/templates/board/insert.html
new file mode 100644
index 0000000..95673ef
--- /dev/null
+++ b/src/main/resources/templates/board/insert.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+ Board Insert
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/insert_after.html b/src/main/resources/templates/board/insert_after.html
new file mode 100644
index 0000000..4203dd5
--- /dev/null
+++ b/src/main/resources/templates/board/insert_after.html
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+ Board Insert After
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/list.html b/src/main/resources/templates/board/list.html
new file mode 100644
index 0000000..aff213a
--- /dev/null
+++ b/src/main/resources/templates/board/list.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+ Board List
+
+
+
+
+
+
+ 글번호 |
+ 아이디 |
+ 내용 |
+ 등록일 |
+
+
+
+
+
+
+
+ 글번호 |
+ 아이디 |
+ |
+ 등록일 |
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/update.html b/src/main/resources/templates/board/update.html
new file mode 100644
index 0000000..8cee810
--- /dev/null
+++ b/src/main/resources/templates/board/update.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+ Board Insert
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/templates/board/view.html b/src/main/resources/templates/board/view.html
new file mode 100644
index 0000000..3a068a0
--- /dev/null
+++ b/src/main/resources/templates/board/view.html
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+ Board View
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/test/java/com/bit/academy/AcademyApplicationTests.java b/src/test/java/com/bit/academy/AcademyApplicationTests.java
new file mode 100644
index 0000000..800ea3d
--- /dev/null
+++ b/src/test/java/com/bit/academy/AcademyApplicationTests.java
@@ -0,0 +1,16 @@
+package com.bit.academy;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class AcademyApplicationTests {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}