util 네임스페이스를 사용하려고 xml 파일에 xmlns:util 구문을 추가했다.
<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.xsd"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:p="http://www.springframework.org/schema/p">
하지만 프로그램 실행 시 아래와 같은 에러가 발생했다.
이를 해결하기 위해서는
<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.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.2.xsd"
xmlns:util="http://www.springframework.org/schema/util">
...
</beans>
와 같이 xsi:schemaLocation에 util 네임스페이스와 관련된
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
를 추가시키면 문제가 해결된다.