spring43 Spring - ์นMVC ์์ (ํํ๋ฉด ์ถ๊ฐ) HomeController ์ถ๊ฐ @Controller public class HomeController { @GetMapping("/") public String home(){ return "home"; } } home.html๋ก ๊ฒฝ๋ก ์ค์ ! ๐ ์ ์ ์ปจํ ์ธ ๋ณด๋ค Controller์์์ ๋งคํ์ด ์ฐ์ ์์๊ฐ ๋ ๋๋ค. 2023. 7. 4. Spring - ์คํ๋ง๋น๊ณผ์ ์์กด๊ด๊ณ2 ์๋ฐ ์ฝ๋๋ก ์ง์ ์คํ๋ง ๋น ๋ฑ๋กํ๊ธฐ ./hello.hellospring/SpringConfig.java package hello.hellospring; import hello.hellospring.repository.JdbcTemplateMemberRepository; import hello.hellospring.repository.MemberRepository; import hello.hellospring.repository.MemoryMemberRepository; import hello.hellospring.service.MemberService; import org.springframework.beans.factory.annotation.Autowired; import org.springfram.. 2023. 7. 4. Spring - ์คํ๋ง ๋น๊ณผ ์์กด๊ด๊ณ1 ์ปดํฌ๋ํธ ์ค์บ๊ณผ ์๋ ์์กด๊ด๊ณ ์ค์ ์์ฑ์์ @Autowired ๊ฐ ์์ผ๋ฉด ์คํ๋ง์ด ์ฐ๊ด๋ ๊ฐ์ฒด๋ฅผ ์คํ๋ง ์ปจํ ์ด๋์์ ์ฐพ์์ ๋ฃ์ด์ค๋ค. ์ด๋ ๊ฒ ๊ฐ์ฒด ์์กด๊ด๊ณ๋ฅผ ์ธ๋ถ์์ ๋ฃ์ด์ฃผ๋ ๊ฒ์ DI (Dependency Injection), ์์กด์ฑ ์ฃผ์ ์ด๋ผ ํ๋ค. ์ด์ ํ ์คํธ์์๋ ๊ฐ๋ฐ์๊ฐ ์ง์ ์ฃผ์ ํ๊ณ , ์ฌ๊ธฐ์๋ @Autowired์ ์ํด ์คํ๋ง์ด ์ฃผ์ ํด์ค๋ค. ์ฐธ๊ณ : helloController๋ ์คํ๋ง์ด ์ ๊ณตํ๋ ์ปจํธ๋กค๋ฌ์ฌ์ ์คํ๋ง ๋น์ผ๋ก ์๋ ๋ฑ๋ก๋๋ค. @Controller ๊ฐ ์์ผ๋ฉด ์๋ ๋ฑ๋ก๋จ ์คํ๋ง ๋น์ ๋ฑ๋กํ๋ 2๊ฐ์ง ๋ฐฉ๋ฒ ์ปดํฌ๋ํธ ์ค์บ๊ณผ ์๋ ์์กด๊ด๊ณ ์ค์ ์๋ฐ์ฝ๋๋ก ์ง์ ์คํ๋ง ๋น ๋ฑ๋กํ๊ธฐ 2023. 7. 4. Spring - ํ์๊ด๋ฆฌ์์ (ํ์ ์๋น์ค ํ ์คํธ) test์ฝ๋๋ ํ๊ธ๋ก ์์ฑํด๋ ๋๋ค. test์ฝ๋๋ ์ด ์ธ๊ฐ์ ๋ก์ง์ผ๋ก ์์ฑ๋ ์ ์๋ค. Given : ๋ฌด์์ด ์ฃผ์ด์ง๋ค๋ฉด when : ์ด๊ฒ์ ์คํํ์๋ then : ๊ฒฐ๊ณผ๊ฐ ์ด๊ฒ์ด ๋์์ผํ๋ค @BeforeEach : ๊ฐ ํ ์คํธ ์คํ ์ ์ ํธ์ถ๋๋ค. ํ ์คํธ๊ฐ ์๋ก ์ํฅ์ด ์๋๋ก ํญ์ ์๋ก์ด ๊ฐ์ฒด๋ฅผ ์์ฑํ๊ณ , ์์กด๊ด๊ณ๋ ์๋ก ๋งบ์ด์ค๋ค. package hello.hellospring.service; import hello.hellospring.domain.Member; import hello.hellospring.repository.MemoryMemberRepository; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.Assertio.. 2023. 7. 4. ์ด์ 1 ยทยทยท 6 7 8 9 10 11 ๋ค์