Upgrade to Spring 3.0.3.RELEASE - Where can I find can history?

I am trying to upgrade an application using Spring 2.5.6 to the latest version (3.0.3.RELEASE) and I am using the Spring repository to find the latest versions of the boxes I need: http://www.springsource.com/repository/app /library/versiondetail?name=org.springframework.spring&version=3.0.3.RELEASE

I'm in version 2.0.8 for spring-mock. I found documentation that says spring-mock moved to spring -test with 2.5.x, but according to the repository, spring -test no longer exists in 3.0.3.RELEASE. I also have problems tracking what happened to spring -tx and spring -webmvc-struts since version 2.5.6.

Do any of you know what happened to these banks (i.e. moved, outdated) and where can I find the documentation?

+3
source share
1 answer

I have all the banks that you are currently mentioning in the project. I just used Maven, the easiest way to get the jars you are looking for:

<properties>
    <org.springframework.version>3.0.3.RELEASE</org.springframework.version>
</properties>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-struts</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>${org.springframework.version}</version>
    <scope>test</scope>
</dependency>
+3
source

Source: https://habr.com/ru/post/1757004/


All Articles