forked from webx/citrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES_SINCE_3.2.0.txt
50 lines (40 loc) · 1.88 KB
/
CHANGES_SINCE_3.2.0.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-- Changes in 3.2.0
* 重要:从本版本开始,SpringExt所生成的schema和以前版本不完全兼容。差别在于,
以前的schema中有一个参数:elementFormDefault="qualified",而新版本将采用unqualified值。
这意味着,XML配置文件被稍微地简化了。
以form service为例,原来是这样写的:
<services:form>
<services:group name="...">
<services:field name="...">
<validators:validator class="..." />
</services:field>
</services:group>
</services:form>
而现在,可不写内部element的namespace前缀:
<services:form>
<group name="...">
<field name="...">
<validators:validator class="..." />
</field>
</group>
</services:form>
为了方便从旧格式迁移到新格式,可以在项目的根目录下,执行以下maven命令:
mvn springext:convert
该maven插件被定义在pom.xml中:
<build>
<plugins>
<plugin>
<groupId>com.alibaba.citrus.tool</groupId>
<artifactId>springext-maven-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugins>
</build>
* DomUtil.sameNs(element)方法的定义被修改:
通过sameNs(element)可以选出和element具有相同namespace的elements,或者不包含namespace的elements(unqualified elements)。
而修改前,unqualified elements将不会被选出来。
这个修改的目的是使老版的webx中的bean definition parser代码(解析qualified elements)可用来解析新版webx中的unqualified elements。
-- Changes in 3.2.1
* 升级到springext-maven-plugin 1.2
* 删除intellij:annotations依赖,因为还不能全面使用这个机制,不如先删除。
* 将velocity/freemarker的依赖改成scope=provided。应用程序如果需要的话,必须明确声明依赖它们。