From 65bf663a564c295a90813e9b8b66f480d2a6f949 Mon Sep 17 00:00:00 2001 From: kimjunghwan <writer0713@naver.com> Date: Tue, 24 Apr 2018 09:29:50 +0900 Subject: [PATCH 1/2] =?UTF-8?q?29=ED=9A=8C=EC=B0=A8=20=EC=8B=9C=EA=B0=84?= =?UTF-8?q?=20=EB=A7=81=ED=81=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring-boot-reference-coding.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spring-boot-reference-coding.md b/spring-boot-reference-coding.md index 65c01c5..ff8b715 100644 --- a/spring-boot-reference-coding.md +++ b/spring-boot-reference-coding.md @@ -452,6 +452,13 @@ Customizing ConfigurableServletWebServerFactory Directly [](https://youtu.be/Lmy_yU7giRw) +[00:00 - 29.1.2 Connection to a Production Database](https://youtu.be/Lmy_yU7giRw?list=PLfI752FpVCS8tDT1QEYwcXmkKDz-_6nm3) + +[37:56 - 29.1.3 Connection to a JNDI DataSource](https://youtu.be/Lmy_yU7giRw?list=PLfI752FpVCS8tDT1QEYwcXmkKDz-_6nm3&t=2276) + +[38:04 - 29.2 Using JdbcTemplate](https://youtu.be/Lmy_yU7giRw?list=PLfI752FpVCS8tDT1QEYwcXmkKDz-_6nm3&t=2284) + + ``` 29.1.2. Connection to a Production Database 29.1.3. Connection to a JNDI DataSource From 2a56354fe56d8bfb1b122f6aebb569b307c96c45 Mon Sep 17 00:00:00 2001 From: kimjunghwan <writer0713@naver.com> Date: Tue, 24 Apr 2018 09:35:31 +0900 Subject: [PATCH 2/2] =?UTF-8?q?1=ED=9A=8C=EC=B0=A8=20=EC=8B=9C=EA=B0=84=20?= =?UTF-8?q?=EB=A7=81=ED=81=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring-boot-reference-coding.md | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/spring-boot-reference-coding.md b/spring-boot-reference-coding.md index ff8b715..b10c513 100644 --- a/spring-boot-reference-coding.md +++ b/spring-boot-reference-coding.md @@ -9,6 +9,48 @@ [](https://youtu.be/CnmTCMRTbxo) +[08:47 - Part I. Spring Boot Documentation](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=527s) + +[08:57 - 1. About the Documentation](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=537s) + +[09:48 - 2. Getting Help](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=588s) + +[11:43 - 3. First Steps ~ 7. Advanced Topics](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=703s) + + +[13:02 - Part II. Getting Started](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=782s) + +[13:53 - 8. Introducing Spring Boot](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=833s) + +[20:56 - 9. System Requirements](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=1256s) + +[22:19 - 10. Installing Spring Boot](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=1339s) + +[23:51 - 10.1 Installation Instructions for the Java Developer](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=1431s) + +[25:33 - 10.1.1 Maven Installation](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=1533s) + + +[35:46 - 13.2.2 Using Spring Boot without the Parent POM](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2146s) + + +[39:44 - 10.3 Upgrading from an Earlier Version of Spring Boot](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2384s) + +[41:07 - 11. Developing Your First Spring Boot Application](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2467s) + +[42:00 - 11.1 Creating the POM](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2520s) + +[45:06 - 11.2 Adding Classpath Dependencies](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2706s) + +[47:52 - 11.3 Writing the Code](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2872s) + +[49:55 - 11.3.1 The @RestController and @RequestMapping Annotations](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=2995s) + +[54:07 - 11.3.2 The @EnableAutoConfiguration Annotation](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=3247s) + +[58:00 - 11.4 Running the Example.](https://www.youtube.com/watch?v=CnmTCMRTbxo&t=3480s) + + ``` I. Spring Boot Documentation 1. About the Documentation