스프링) SpringSecurity - 1) Security, Mustache 환경 설정
·
자바 탐구
Security, Mustache 환경설정 build.gradle plugins { id 'java' id 'org.springframework.boot' version '3.0.7' id 'io.spring.dependency-management' version '1.1.0' } group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-bo..
디자인 패턴) MVC
·
웹 탐구
MVC (Model - View - Controller) 소프트 웨어 디자인 패턴 중의 하나이다. 이 패턴을 성공적으로 사용하면, 사용자 인터페이스로부터 비즈니스 로직을 분리하여 애플리케이션의 시각적인 요소나 그 이면에서 실행되는 비즈니스 로직을 서로 영향 없이 쉽게 고칠 수 있는 애플리케이션을 만들 수 있다. MVC 패턴은 소프트웨어를 구성하는 요소들을 Model, View, Controller로 구분하여 각각의 역할을 분리한다. Model : 데이터와 비즈니스 로직을 담당 View : 사용자 인터페이스를 담당 Controller : Model과 View 사이의 상호작용을 조정하고 제어 모델, 뷰, 컨트롤러의 관계를 묘사하는 간단한 다이어그램 웹 애플리케이션에서 일반적인 MVC구성요소 다이어그램 이를 ..
오지랖 토끼
'mvc' 태그의 글 목록