@Component의 종류와 시멘틱 @Component

626 단어 SpringSpring
@Component
public class NewlecExam implements Exam{
	@Value("20")	//@Value("") 을 통해서 초기화
    private int kor;
    
    @Value("10")
    private int eng;
    private int math;
    private int com;
}

아래는 @Component의 세분화된 Annotation들이다.

Controller에서 클라이언트의 요구사항을 입력받고 이를 Service에 전달한다.

Service에서는 사용자의 요구사항을 처리할 수 있는 코드들이 포함되어 있다.
(업무단위, 트렌젝션 단위로 포함되어 있음)

DAO(Repository) 데이터를 제공받고 있는 클래스

좋은 웹페이지 즐겨찾기