본문 바로가기

전체 글

(291)
[REST API] 직관적 네이밍 연습 @RestController public class OrderController { private final OrderService orderService; public OrderController(OrderService orderService) { this.orderService = orderService; } @PostMapping("/orders") public Order createOrder(@RequestBody OrderRequest orderRequest) { return orderService.createOrder(orderRequest); } @GetMapping("/orders") public List getOrders() { return orderService.getOrders(); ..
[Spring Framework core] 1.6. Customizing the Nature of a Bean (1) https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-factory-nature Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but determining exactly where the autowired bean definitions are declared is still somewhat ambiguous. For example, as a developer looking at ServiceConfig, how do docs.spring.io 틀린 해석이 있다면..
[Spring Framework core] 1.5. Bean Scopes https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-factory-scopes Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but determining exactly where the autowired bean definitions are declared is still somewhat ambiguous. For example, as a developer looking at ServiceConfig, how do docs.spring.io 틀린 해석이 있다면..
[Spring Framework core] 1.4. Dependencies (3) https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-factory-dependson Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but determining exactly where the autowired bean definitions are declared is still somewhat ambiguous. For example, as a developer looking at ServiceConfig, how do docs.spring.io 틀린 해석이 ..
[Spring Framework core] 1.4. Dependencies (2) https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-factory-properties-detailed Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but determining exactly where the autowired bean definitions are declared is still somewhat ambiguous. For example, as a developer looking at ServiceConfig, how do docs.spring...
[Spring Framework core] 1.4. Dependencies (1) https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-dependencies Core Technologies In the preceding scenario, using @Autowired works well and provides the desired modularity, but determining exactly where the autowired bean definitions are declared is still somewhat ambiguous. For example, as a developer looking at ServiceConfig, how do docs.spring.io 틀린 해석이 있다면 알..
[Spring guide] Caching Data with Spring https://spring.io/guides/gs/caching/ Spring | Home Cloud Your code, any cloud—we’ve got you covered. Connect and scale your services, whatever your platform. spring.io 틀린 해석이 있다면 알려주세요 💐 github에 이미 소스가 아주 예쁘게 올라가 있어서 굳이 할 필요는 없지만 쭈욱 읽어보면서 핵심 기능들에 대한 코드를 정리해볼 생각이다 전체 파일 소스는 위의 출처 링크에서 깃허브로 들어가면 볼 수 있다 각 코드 부분에 대한 설명도 잘 적혀있어서 참고하기 좋았다 @SpringBootApplication is a convenience annotation that adds al..
[Spring Boot IO] 1. Caching https://docs.spring.io/spring-boot/docs/current/reference/html/io.html#io IO The Spring Framework provides support for transparently adding caching to an application. At its core, the abstraction applies caching to methods, thus reducing the number of executions based on the information available in the cache. The caching logic is docs.spring.io 틀린 내용이 있다면 알려주세요 🐈‍⬛ IO 설명부터 대부분의 application 은 어느..

728x90