spring 3.x 升級 spring 4 實踐

爲何升級 spring 4

升級 Spring4 的緣由是:想要將老項目從jdk1.6升級之1.8,而Spring 4 之前的版本不兼容 JDK8。html

Spring 4 相比 Spring 3,引入許多新特性,這裏列舉幾條較爲重要的:java

  • 支持 JDK8 (這個是最主要的)。
  • Groovy Bean Definition DSL 風格配置。
  • 支持 WebSocket、SockJS、STOMP 消息
  • 移除 Deprecated 包和方法
  • 一些功能增強,如:核心容器、Web、Test 等等,不一一列舉。

升級步驟

  • 清理maven依賴,解決紅線衝突,spring相關依賴包顯示定義
  • 直接修改spring版本
  • spring mvc 中若是返回結果爲 json 須要依賴 jackson 的jar包,可是他升級到了2, 之前是 codehaus.jackson,如今換成了 fasterxml.jackson
<dependency>      
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.7.0</version>
</dependency>
<dependency>                
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.7.0</version>
</dependency>
  • 修改spring xml文件的xsd,去掉版本號,以下面示例中的3.1
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
  • 單測事務註解問題,繼承的父類若已經標有註解TransactionalTestExecutionListener,則子類不須要重複定義,不然會致使錯誤
java.lang.IllegalStateException: Cannot start a new transaction without ending the existing transaction.
  • web 容器須要支持servlet api 2.5版本,tomcat至少6以上

圖片

參考文檔

升級 spring 4:
https://dunwu.github.io/blog/...
單測事務問題:
https://my.oschina.net/u/2430...
tomcat servlet 版本問題:
http://tomcat.apache.org/whic...
相關文章
相關標籤/搜索