spring 프로필 이상

3307 단어 SpringJavaXMLAOPBean
더 읽 기

100817 141034 INFO AbstractApplicationContext.java:411 Refreshing org.springfram
ework.context.support.ClassPathXmlApplicationContext@1f9dc36: display name [org.
springframework.context.support.ClassPathXmlApplicationContext@1f9dc36]; startup
 date [Tue Aug 17 14:10:34 CST 2010]; root of context hierarchy
100817 141034 INFO XmlBeanDefinitionReader.java:323 Loading XML bean definitions
 from class path resource [context-common-default.xml]
Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinit
ionParsingException: Configuration problem: Unable to locate Spring NamespaceHan
dler for XML schema namespace [http://www.springframework.org/schema/tx]
Offending resource: class path resource [context-common-default.xml]

        at org.springframework.beans.factory.parsing.FailFastProblemReporter.err
or(FailFastProblemReporter.java:68)
        at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderC
ontext.java:85)
        at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderC
ontext.java:80)
        at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.er
ror(BeanDefinitionParserDelegate.java:281)
        at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.pa
rseCustomElement(BeanDefinitionParserDelegate.java:1294)

문제 원인: 포장 후 jar 패키지 에 META - INF 디 렉 터 리 에 여러 개의 spring. schemas 파일 이 포함 되 어 있 습 니 다. 이 파일 은 우선 순위 가 있어 처리 할 수 없습니다.http://www.springframework.org/schema/tx의 schema.
해결 방법:
원래 의 spring 하 도 급 의존:


			org.springframework
			spring-aop
		
		
			org.springframework
			spring-beans
		
		
			org.springframework
			spring-context
		
		
			org.springframework
			spring-context-support
		
		
			org.springframework
			spring-core
		
		
			org.springframework
			spring-jdbc
		
		
			org.springframework
			spring-tx
		
		
			org.springframework
			spring-web
		
		
			org.springframework
			spring-webmvc
		
		
			org.springframework
			spring-test
			test
		

다음 패키지 로 변경:


			org.springframework
			spring
		

ok pass. 메모!

좋은 웹페이지 즐겨찾기