본문 바로가기

프레임워크/Spring

[프레임 워크] <Spring>〈Maven〉application.xml 생성

없을 시 발생하는 에러


파일 생성

 

◎ 경로 : src/main/resources 

이름 : applicationContext.xml


기본 스키마

◎ 스키마는 시스템 버전에 따라 수정이 필요하다.

<?xm1 version="1.0" encoding= "UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation= "http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">



</beans>