1. 程式人生 > >標籤不可出現屬性“name”可能是你spring版本過低

標籤不可出現屬性“name”可能是你spring版本過低

我在。spring拷貝配置檔案時候

spring的構造注入編譯器突然提示:構造注入不能有name 屬性。上網查了下。發現是自己的spring版本的問題:

解決辦法:

把xml的表頭改為:

<?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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

。然後:編譯器就通過了。