본문 바로가기

Programming/Java

Attribute 'local' is not allowed to appear in element 'ref'.

Spring Framework 4.0부터 local이 없어졌기 때문에 오류 발생
아래와 같이 local로 되어 있는 키워드를 모두 bean으로 바꾸어 준다.

<property name="target">
   <ref local="targetBean" />
</property>