本周 Spring:2012年5月29日

工程 | Adam Fitzgerald | 2012年5月29日 | ...

欢迎回到又一期《本周 Spring》!像往常一样,我们有很多内容要介绍,所以让我们直奔主题!

  1. Chris Beams 宣布 Spring 3.2 的第一个里程碑版本现已发布!这个版本太棒了!
    	It includes 
    
    	initial support for asynchronous <CODE> @Controller</CODE> methods,
    	early support for JCache-based cache providers,
    	significant performance improvements in autowiring of non-singleton beans,
    	initial delay support for <CODE> @Scheduled</CODE> and <CODE> &lt;task:scheduled&gt;</CODE>,
    	ability to choose between multiple executuors with <CODE>@Async</CODE>,
    	enhanced bean profile selection using the not (<CODE>!</CODE>) operator,  
    	48 bugs fixed, 8 new features and 36 improvements implemented. 
    	
    

    立即查看最新最棒的版本,并随时提供反馈!

    当我在Twitter账户上征求此综述的任何考虑项目时,一位用户立即反驳道:“有了Spring 3.2的消息,不如就社区是否希望3.2 M1之后直接推出RC1进行一次投票吧。它太好了,等不及了。” 我同意,这个版本确实非常棒!

    	  </LI>
    
  2. Michael Isvy撰写了一篇精彩的关于Spring核心底层代理机制的介绍,包括事务管理和缓存。一旦你理解了它的工作原理,就可以轻松地进行精确运用。
  3. Martin Lippert宣布SpringSource Tool Suite 2.9.2已发布。此版本包括对tcServer 2.7的更新兼容性以及一些错误修复。
  4. Alan Stewart宣布Spring Roo 1.2.2版本已发布
     This is the second maintenance release for 1.2 and includes fixes for a number of issues and includes support for Spring Framework 3.1.1 and JDK 7.  Roo 1.2.2 also includes the excellent new "tailor" feature provided by our partner, Accenture. The H-Online website had <a href = "http://www.h-online.com/open/news/item/Spring-Roo-1-2-update-arrives-1585213.html">coverage of the release</A>.  </LI>  
    
    <LI> The Cake Solutions blog has put together  (another!) 
     great blog introducing 
    <a href ="http://www.cakesolutions.net/teamblogs/2012/05/23/enabling-neo4j-web-admin-tool-on-the-embedded-server-using-spring-data">
    how to run Neo4j embedded with the web administration tool, and Spring Data</A>. 
    / </LI>
    
  5. Zenika博客再次出击,本周的综述中不仅带来了一篇,而是两篇精彩文章。第一篇文章提供了Spring Data MongoDB的概述,第二篇文章概述了如何结合使用Spring Batch和MongoDB。很棒的内容,我一定会回来查看新内容!
  6. JavaRevisted博客有一篇很好的文章,关于如何在Spring中指定bean的作用域。几点澄清:Spring 3.0确实提供了新的作用域(包括我最喜欢的一个,SimpleThreadScope,并且——尽管这篇博客介绍了可用的默认作用域——你可以使用CustomScopeConfigurer并填写自定义作用域实例的映射来轻松注册新的作用域,如下所示
    	@Bean 
    	public static CustomScopeConfigurer csc(){ 
    	  
    	  Map<String,Object> scopes = new HashMap<String,Object>();
    	  scopes.put("thread", new SimpleThreadScope());
    	  	
    	  CustomScopeConfigurer csc = new CustomScopeConfigurer();
    	  csc.setScopes(scopes);
    	  return csc;	
    	}
    
  7. 博主Angelo Zerr撰写了一篇介绍如何使用Spring Virgo(以前称为Spring DM)、Spring Data JPA和Spring Remoting构建Eclipse RCP应用程序的文章。有很多博客——它们似乎在顶部附近都有链接到之前的上一篇,所以只需倒着看就能找到所有文章。

    这些文章有法语和英语两个版本。

  8. Navin Bansal撰写了一篇博客,介绍了Spring容器管理的bean的生命周期

获取 Spring 新闻通讯

通过 Spring 新闻通讯保持联系

订阅

领先一步

VMware 提供培训和认证,助您加速进步。

了解更多

获得支持

Tanzu Spring 提供 OpenJDK™、Spring 和 Apache Tomcat® 的支持和二进制文件,只需一份简单的订阅。

了解更多

即将举行的活动

查看 Spring 社区所有即将举行的活动。

查看所有