[Spring] 일치하는 와일드 카드는 엄격하지만 'tx : annotation driven'요소에 대한 선언을 찾을 수 없습니다 ERROR - Seonmi-Hwang/study GitHub Wiki
일치하는 와일드 카드는 엄격하지만 'tx : annotation-driven'요소에 대한 선언을 찾을 수 없습니다.
xmlns:tx="http://www.springframework.org/schema/tx"
위와 같이 선언되어 있으나, 아래의 schemaLocation이 없을 경우 발생
xsi:schemaLocation="http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.6.xsd"
같은 맥락으로 아래와 같은 error도 발생하였다.
일치하는 와일드 카드 문자가 엄격하게 적용되지만 'mybatis:scan' 요소에 대한 선언을 찾을 수 없습니다.
이 역시 아래와 같이 해결해주면 된다.
xsi:schemaLocation="http://mybatis.org/schema/mybatis-spring
http://mybatis.org/schema/mybatis-spring.xsd"