Почему я не могу импортировать ApplicationContext в Spring-5.0.0.RELEASE - PullRequest
0 голосов
/ 25 июня 2018

Я пытался следовать этому руководству по PluralSight для изучения Spring.Учебное пособие основано на весне 4.3.2, в то время как я хотел изучить его на 5.0.0.Я импортировал пружинную зависимость, используя mvn:

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.0.0.RELEASE</version>
    </dependency>
  </dependencies>

Все зависимости были импортированы нормально.Я создал свой applicationContext.xml и настроил бины.Теперь у меня проблема с импортом ApplicationContext.

ApplicationContext appContext = new ClassPathXmlApplicationContext("applicationContext.xml");

В приведенной выше строке кода написано, что не удалось разрешить ApplicationContext и ClassPathXmlApplicationContext.

Я попытался выяснить,классы были изменены в пользу любого другого класса, но я не нашел такой информации на веб-сайте Spring.

Я что-то пропустил или есть какие-либо изменения в использовании Spring после 5.0.0

Мой pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.saurabh</groupId>
  <artifactId>spring</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Spring</name>
  <description>My first attempt at learning spring from Pluralsight</description>

  <!--  the stuff above this was generated automatically while I wrote all that is below -->
  <dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.0.0.RELEASE</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
  </build>
</project>

1 Ответ

0 голосов
/ 22 февраля 2019

Пожалуйста, получите все ваши зависимости отсюда: Зависимость Spring Maven

Похоже, вы используете правильную зависимость:

<!-- 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

...