-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Released Spring Web Services 2.0.0-RC2
- Loading branch information
Showing
9 changed files
with
134 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,42 @@ | ||
Dear Spring community, | ||
|
||
I'm pleased to announce that Spring Web Services 2.0 Milestone 1 has been | ||
released! | ||
I'm pleased to announce that Spring Web Services 2.0 Release Candidate 2 has | ||
been released! | ||
|
||
This is the first milestone release in the 2.0 release cycle. It does not | ||
introduce any new features (yet), but does add the following: | ||
This is the second release candidate in the 2.0 release cycle. The most | ||
important new feature in this release is the update of the Spring-WS XML | ||
namespace, which now contains <sws:annotation-driven/> and <sws:interceptors/> | ||
elements (similar to the Spring-MVC namespace), and <sws:static-wsdl/> | ||
<sws:dynamic-wsdl/> for exporting your WSDLs. | ||
All of these features are described in the updated reference documentation, | ||
which you can find here: | ||
|
||
- Usage of Spring's OXM | ||
- Java 5 API (including generics, varargs, etc) | ||
http://static.springsource.org/spring-ws/sites/2.0/reference/html/ | ||
|
||
Please see the changelog for details. | ||
We consider this release (RC2) complete. If no major new issues are found, we | ||
will release 2.0.0-RELEASE in the first half of January 2011. | ||
|
||
Spring Web Services 2.0 is due in the second quarter of 2010. | ||
While we did make some changes, Spring-WS 2.0 should be a drop-in | ||
replacement for 1.5. The one exception is the 2.0 version of the XSD namespace, | ||
where we removed <sws:marshalling-endpoints/> and <sws:xpath-endpoints/> in | ||
favor of <sws:anotation-driven/>. To keep using the two latter elements, | ||
please make sure to use the 1.5 version of the XSD, like so: | ||
|
||
For more information, see http://static.springframework.org/spring-ws/site/ | ||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:sws="http://www.springframework.org/schema/web-services" xsi:schemaLocation=" | ||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | ||
http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-1.5.xsd"> | ||
|
||
To upgrade to <sws:annotation-driven/>, use the 2.0 version of the XSD: | ||
|
||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:sws="http://www.springframework.org/schema/web-services" xsi:schemaLocation=" | ||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | ||
http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd"> | ||
|
||
Please file a JIRA issue if you find any other regressions in the 2.0 RC2 | ||
release. | ||
|
||
Please see the changelog for more details. | ||
|
||
For more information, see http://static.springframework.org/spring-ws/sites/2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/bin/sh | ||
MAVEN_OPTS="-Djava.awt.headless=true -Xmx512m -Xms64m -XX:MaxPermSize=128m" | ||
mvn -Dmaven.test.skip=true -P release clean javadoc:javadoc docbkx:generate-html docbkx:generate-pdf install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters