PDA

View Full Version : Spring Framework 2.5.2 Released



Colin Sampaleanu
Mar 3rd, 2008, 08:45 AM
(2008/3/3) - We're pleased to announce that Spring Framework 2.5.2 has been released. Here is Juergen's original announcement:

--

Dear Spring community,

I'm pleased to announce that Spring Framework 2.5.2 has been released! This is the second update release in the Spring 2.5 series. It fixes all issues reported since 2.5.1 and introduces various enhancements throughout the framework:

Restored full Spring 2.0 compatibility for specific extension points
Extended SQL error code mappings for MS SQL, MySQL, PostgreSQL and Oracle
Revised JDBC BeanPropertyRowMapper with refined value extraction logic
Support for the GlassFish/JBoss JCA WorkManager as TaskExecutor backend
Support for Eclipse Persistence Services 1.0 M4 (the EclipseLink JPA provider)
Compatibility with the WebSphere JPA provider (derived from OpenJPA)
@RequestMapping supports "!myParam" expressions for non-presence of a parameter
@RequestMapping's "params" attribute supported at the type level as well
Revised JSP CheckboxesTag and RadioButtonsTag (for strict HTML compliance)Download (http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=173644&release_id=578115) | Documentation (http://static.springframework.org/spring/docs/2.5.2/reference/index.html) | Changelog (http://static.springframework.org/spring/docs/2.5.x/changelog.txt)

Juergen Hoeller
Lead, Spring Framework Development

davidkarlsen
Mar 3rd, 2008, 10:53 AM
Any chance of getting it onto http://repo1.maven.org/maven2/org/springframework quite soon?

Yaozong
Mar 4th, 2008, 05:59 AM
Any chance of getting it onto http://repo1.maven.org/maven2/org/springframework quite soon?

Yeah, I simply changed my version number from 2.5.1 to 2.5.2 in pom, but it turned out there is no 2.5.2 in maven repo yet:(

haroon.rafique
Mar 4th, 2008, 10:25 AM
Any chance of getting it onto http://repo1.maven.org/maven2/org/springframework quite soon?

+1. pretty please.

haroon.rafique
Mar 4th, 2008, 10:29 AM
Any chance of getting it onto http://repo1.maven.org/maven2/org/springframework quite soon?

Found this jira:
http://jira.springframework.org/browse/SPR-4536

akuhtz
Mar 5th, 2008, 05:02 AM
Use this repo to get 2.5.2:
http://s3.amazonaws.com/maven.springframework.org/release

davidkarlsen
Mar 5th, 2008, 05:38 AM
Use this repo to get 2.5.2:
http://s3.amazonaws.com/maven.springframework.org/release

Nogo - respons with:

<code>
<Error>
<Code>NoSuchKey</Code>
<Message>The specified key does not exist.</Message>
<Key>release</Key>
<RequestId>D23DD99FDFCE817D</RequestId>

<HostId>
vQXbALBcc9ClahRCh8PcrwRQIlHj0U9w96wHDHVO95g0OfUw9v U8JCasVojR8cTe
</HostId>
</Error>
</code>

akuhtz
Mar 5th, 2008, 06:48 AM
The idea was to add this to your pom.xml under repositories to get the springframework from there.



...
<repositories>
<repository>
<id>spring</id>
<name>Spring repository</name>
<url>http://s3.amazonaws.com/maven.springframework.org/release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
...
</repositories>
...

mirror303
Mar 5th, 2008, 09:22 AM
Seems a bit weird to suddenly get Spring from a completely different repository...

haroon.rafique
Mar 5th, 2008, 09:35 AM
Use this repo to get 2.5.2:
http://s3.amazonaws.com/maven.springframework.org/release

Thanks for the link, but no thanks. Spring 2.5.1 was released on Jan 9th and the maven artifacts appeared in repo1 on Jan 9th. The announcement for the 2.5.2 release came on Mar 3rd (changelog (http://static.springframework.org/spring/docs/2.5.2/changelog.txt) says release date is Feb 29th), and still no maven artifacts. All people are pointing out is that a lot of us rely on maven artifacts and they are not there yet in their regular place. That's all.

Ben Hale
Mar 6th, 2008, 02:33 AM
If you're waiting on the artifacts from the Maven central repo, you may be waiting a while. From the Spring side, we've published our artifacts to an internal repository that the Maven team syncs against. For some reason, the Maven team hasn't synced it yet (and hasn't for a couple of weeks it appears). We don't really have any control over this, but we've emailed the Maven team to get it sorted.

If you are desperate for 2.5.2 artifacts, I whole heartedly recommend the suggestion earlier to use the Amazon S3 release repo. As you can see from this (http://blog.springsource.com/main/2007/09/18/maven-artifacts-2/) blog post, we already repositories like this for milestones and snapshots. The post doesn't mention a release repository, but it follows the same pattern as the other two.

If there is no reply from the maven team by this afternoon (GMT), I'll be blogging to recommend this particular course of action.

McCloud
Mar 6th, 2008, 06:27 AM
The jars are available in the Maven Repo now. Thanks Ben.

Ben Hale
Mar 6th, 2008, 06:42 AM
I just noticed that myself. Have fun with them :)

gordonjl101
Jul 14th, 2008, 01:16 PM
trying the url: springide.org/updatesite (silly forum won't let me post the full url)

I get the following xml back:


<?xml version="1.0" encoding="UTF-8"?>
<Error>
<Code>NoSuchKey</Code>
<Message>The specified key does not exist.</Message>
<Key>release/IDE</Key>
<RequestId>CCB9CD211AD248D9</RequestId>
<HostId>bEAmWoJ13Ro54VSf+gmNuDrHavWsTkuLetaI+Ur4ZyGTvBNfXS VWji3P2Rjkpgkr</HostId>
</Error>

Any idea what I'm doing wrong here?

John