我试图遵循PluralSight上的Connecting to Cloud SQL from external application教程来学习Spring。本教程基于Spring 4.3.2,而我想在5.0.0上学习。我使用mvn导入了spring依赖项:
first byte: dd
second byte: cc
所有依赖项都可以很好地导入。我创建了<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.0.RELEASE</version>
</dependency>
</dependencies>
并配置了bean。现在,我在导入applicationContext.xml
时遇到了问题。
ApplicationContext
上面的代码行说无法解析ApplicationContext appContext = new ClassPathXmlApplicationContext("applicationContext.xml");
和ApplicationContext
。
我试图找出这些类是否已更改为其他类,但我没有在Spring网站上找到任何此类信息。
我错过了什么吗?5.0.0之后使用Spring的方式是否有变化
我的pom.xml:
ClassPathXmlApplicationContext
答案 0 :(得分:0)
请从此处获取所有依赖项: Spring Maven Dependency
看起来您正在使用正确的依赖项:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.0.RELEASE</version>
</dependency>
尝试做mvn clean install