2주차 주특기 심화가 시작됬다.
@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); }}
@Component를 클래스 위에 설정
@Component
public class ProductService { ... }
@Component의 역할
// 1. ProductService 객체 생성
ProductService productService = new ProductService();
// 2. 스프링 IoC 컨테이너에 빈 (productService) 저장
// productService -> 스프링 IoC 컨테이너
스프링 '빈' 이름: 클래스의 앞글자만 소문자로 변경
@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);
}
}
// 1. @Bean 설정된 함수 호출
ProductRepository productRepository = beanConfiguration.productRepository();
// 2. 스프링 IoC 컨테이너에 빈 (productRepository) 저장
// productRepository -> 스프링 IoC 컨테이너
public ProductRepository productRepository() {..} → productRepostory
@Autowired
@Component
public class ProductService {
@Autowired
private ProductRepository productRepository;
}
@Component
public class ProductService {
private final ProductRepository productRepository;
@Autowired
public ProductService(ProductRepository productRepository) {
this.productRepository = productRepository;
}
// ...
}