스프링 root-context.xml에서 아래 클래스를 못찾을 때가 있다.

org.springframework.jdbc.datasource.DataSourceTransactionManager

 

이럴 때는 아래 코드를 pom.xml에 추가하면 해결된다.

		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
			<version>${org.springframework-version}</version>
		</dependency>

 

+ Recent posts