반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- kafka
- 스프링 부트
- 스프링
- sqld
- @Configuration
- Javascript
- 필드 주입
- resultMap
- db
- 스프링부트
- 스프링 부트 입문
- 스프링 프레임워크
- JPA
- 스프링 빈
- assertThat
- assertThrows
- 스프링 부트 기본
- 싱글톤
- springboot
- 스프링 컨테이너
- thymeleaf
- DIP
- SQL
- DI
- 생성자 주입
- mybatis
- jdbc
- Effective Java
- java
- spring
Archives
- Today
- Total
목록스프링 입문 (1)
선 조치 후 분석

회원 관리 예제 - 웹 MVC 개발 회원 웹 기능 - 홈 화면 추가 회원 웹 기능 - 등록 / 조회 Member 컨트롤러를 통해서 회원을 등록하고 조회하는 방법을 배워보자! 1. HomeController 생성 package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { @GetMapping("/") // '/'의 의미는 localhost8080 주소값 public String home() { return "home"; // hom..
Framework/Spring Boot
2021. 12. 8. 23:10