TechEazy Consultingblog.techeazyconsulting.com·Aug 23, 2024Building Your First Spring Boot App: A Complete Guide to MVC Architecture and REST ControllersLearn how to build your first Spring Boot application using the MVC architecture and REST controllers. This guide covers the essential Spring concepts such as Inversion of Control (IoC), Dependency Injection, and annotations like @RestController and ...DiscussMastering Backend Development with Java, Spring, and AWSSpringboot
Merge Simpsonblog.letsdev.me·Jul 12, 2024차근차근 Modern Spring Boot 3 기초 (7) DTO와 API페이지 요청과 AJAX 요청 우리는 두 요청 중 페이지 요청은 다루지 않습니다. 페이지 요청은 말 그대로 웹 페이지에 대한 요청이고, AJAX 요청은 쉽게 말하자면 이미 페이지를 받아서 띄운 상태에서, 추가적으로 데이터나 명령에 대하여 서버에 요청하는 것입니다. 페이지 요청을 다루지 않는 이유는, 최근 프론트엔드와 백엔드의 작업 영역, 배포하는 서버 등이 예전에 비해 뚜렷하게 구분되고 있기 때문입니다. 페이지 요청을 프론트엔드 쪽으로 하고, 데...Discuss·85 reads차근차근 Modern Spring Boot 3 - 기초RestController