We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.错误:ERROR context.ContextLoader - Context initialization failed org.springframework.beans.factory.BeanCreationException: 2.主要原因:主要是由于jdk8不能正常运行,切换成jdk8一下的可以运行 3.jdk8解决办法:
修改pom.xml文件 1、webx的依赖改为3.1.6版;
<dependency> <groupId>com.alibaba.citrus</groupId> <artifactId>citrus-webx-all</artifactId> <version>3.1.6</version> </dependency>
2、添加velocity的依赖,我用了1.7;
<dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency>
3、对依赖项dubbo添加exclusion,避免引入旧spring
<dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>${project.parent.version}</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> </exclusion> </exclusions> </dependency>
参考于:apache/dubbo#50
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1.错误:ERROR context.ContextLoader - Context initialization failed org.springframework.beans.factory.BeanCreationException:
2.主要原因:主要是由于jdk8不能正常运行,切换成jdk8一下的可以运行
3.jdk8解决办法:
修改pom.xml文件
1、webx的依赖改为3.1.6版;
2、添加velocity的依赖,我用了1.7;
3、对依赖项dubbo添加exclusion,避免引入旧spring
参考于:apache/dubbo#50
The text was updated successfully, but these errors were encountered: