본문 바로가기

프로그래밍/SpringMVC_기초20

회원관리 예제 9 - (회원 웹 기능 조회) -추가- public String list(Model model) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 package hello.hellospring.controller; import hello.hellospring.domain.Member; import hello.hellospring.service.MemberService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Co.. 2023. 10. 22.
회원관리 예제 - 8 (회원 웹 기능 등록) MemberController -추가 public String createForm() public String create(MemberForm form) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 import hello.hellospring.service.MemberService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping;.. 2023. 10. 22.
회원관리 예제 - 7 (홈화면 추가하기) contrller/Homecontroller 추가 1 2 3 4 5 6 7 8 9 10 11 12 13 package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { @GetMapping("/") public String home(){ return "home"; } } Colored by Color Scripter cs reources/templates/home.html(파일추가) 1 2 3 4 5 6 7 8 9 10 11 12 13.. 2023. 10. 22.
회원관리 예제-6(자바 코드로 직접 스프링 빈 등록하기) (필드 주입, setter 주입, 생성자 주입) 자바 코드로 직접 스프링 빈 등록하기 MemberRepository @Service 2023. 10. 22.