[TIL] 항해99 17일차

심우진·2021년 9월 30일
0
post-thumbnail

2주차 주특기 심화가 시작됬다.

MVC(Model - View - Controller)

@Controller
@RequestMapping("/hello/response")
public class HelloResponseController {

    @GetMapping("/html/redirect")
    public String htmlFile() {
        return "redirect:/hello.html";
    }
@GetMapping("/html/templates")
public String htmlTemplates() {
    return "hello";
}
@GetMapping("/body/html")
@ResponseBody
public String helloStringHTML() {
    return "<!DOCTYPE html>" +
           "<html>" +
               "<head><meta charset=\"UTF-8\"><title>By @ResponseBody</title></head>" +
               "<body> Hello, 정적 웹 페이지!!</body>" +
           "</html>";
}
    @GetMapping("/html/dynamic")
public String helloHtmlFile(Model model) {
    visitCount++;
    model.addAttribute("visits", visitCount);
    // resources/templates/hello-visit.html
    return "hello-visit";
}
private static long visitCount = 0;

@GetMapping("/json/string")
@ResponseBody
public String helloStringJson() {
    return "{\"name\":\"BTS\",\"age\":28}";
}
@GetMapping("/json/class")
@ResponseBody
public Star helloJson() {
    return new Star("BTS", 28);
}}

IoC 컨테이너

  • 빈 (Bean): 스프링이 관리하는 객체
  • 스프링 IoC 컨테이너: '빈'을 모아둔 통

빈에 등록하는 방법

@Component를 클래스 위에 설정

@Component
public class ProductService { ... }

@Component의 역할

// 1. ProductService 객체 생성
ProductService productService = new ProductService();

// 2. 스프링 IoC 컨테이너에 빈 (productService) 저장
// productService -> 스프링 IoC 컨테이너

스프링 '빈' 이름: 클래스의 앞글자만 소문자로 변경

  • public class ProductServcieproductServcie

@Bean

  • 직접 객체를 생성하여 빈으로 등록 요청
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class BeanConfiguration {

    @Bean
    public ProductRepository productRepository() {
        String dbUrl = "jdbc:h2:mem:springcoredb";
        String dbId = "sa";
        String dbPassword = "";

        return new ProductRepository(dbUrl, dbId, dbPassword);
    }
}
  • 스프링 서버가 뜰 때 스프링 IoC 에 '빈' 저장
// 1. @Bean 설정된 함수 호출
ProductRepository productRepository = beanConfiguration.productRepository();

// 2. 스프링 IoC 컨테이너에 빈 (productRepository) 저장
// productRepository -> 스프링 IoC 컨테이너
  • 스프링 '빈' 이름: @Bean 이 설정된 함수명
public ProductRepository productRepository() {..} → productRepostory

스프링 '빈' 사용 방법

@Autowired

  • 멤버변수 선언 위에 @Autowired
@Component
public class ProductService {
		
    @Autowired
    private ProductRepository productRepository;
		
}
  • '빈' 을 사용할 함수 위에 @Autowired
@Component
public class ProductService {

    private final ProductRepository productRepository;

    @Autowired
    public ProductService(ProductRepository productRepository) {
        this.productRepository = productRepository;
    }
		
		// ...
}

0개의 댓글

관련 채용 정보