728x90
- 자바 APP
-> xml
-> @(annotation)
- 서블릿 설정
1) beans 추가
<beans xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
2) 어노테이션을 사용하였다면
서블릿.xml에 <context:annotation-config />를 올려주고 <property ~ />는 삭제해준다.
-> <context:annotation-config /> -> 어노테이션 사용하기위함(context:component-scan사용하면 쓸 필요 없다)
-> <context:component-scan base-package="패키지명"/>
728x90
'SPRING' 카테고리의 다른 글
[Spring] 한글깨짐 방지 - servlet.xml (Eclipse) (0) | 2022.05.11 |
---|---|
[Spring] Annotation 어노테이션 - @Component (0) | 2022.05.11 |
[Spring] 서블릿 분리 & 환경설정 (0) | 2022.05.11 |
[Spring] 오라클(Oracle) 연동 (Eclipse) (0) | 2022.05.11 |
[Spring] tiles ViewResolver 설정하기 (0) | 2022.05.11 |