[java-metadata-aggregator COMMIT] /trunk/aggregator-parent/doc/RELEASE-NOTES.txt

noreply at shibboleth.net noreply at shibboleth.net
Fri May 9 11:08:28 EDT 2014


Author: iay
Date: Fri May  9 11:08:28 2014
New Revision: 362

URL: http://svn.shibboleth.net/view/java-metadata-aggregator?rev=362&view=rev
Log:
Document use of IdentifiableBeanPostProcessor.

Modified:
    trunk/aggregator-parent/doc/RELEASE-NOTES.txt

Modified: trunk/aggregator-parent/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-parent/doc/RELEASE-NOTES.txt?rev=362&r1=361&r2=362&view=diff
==============================================================================
--- trunk/aggregator-parent/doc/RELEASE-NOTES.txt (original)
+++ trunk/aggregator-parent/doc/RELEASE-NOTES.txt Fri May  9 11:08:28 2014
@@ -2,12 +2,37 @@
 ===================================================
 
 Highlights
+
     * Now using Spring resources instead of (now deprecated) Shibboleth
       resources.
+
     * Now uses the JAXP implementation supplied by the JRE, rather than
       a much older "endorsed" version. This will affect any configurations
       which depended on Xerces or Xalan specific extensions; re-endorse
       the implementation of your choice if this is an issue. 
+
+    * This release bundles a new version of the Shibboleth spring-extensions
+      package, which provides a new IdentifiableBeanPostProcessor class.
+      If you include an instance of this class in your Spring configuration,
+      you can now default the "id" property on all Shibboleth components
+      from the bean's "id" attribute, simplifying your configuration by
+      removing the usual duplication between these values.
+      
+      Before:
+      
+      <bean class="..." id="theBean">
+         <property name="id" value="theBean"/>
+         ...
+      </bean>
+      
+      After:
+      
+      <bean class="net.shibboleth.ext.spring.config.IdentifiableBeanPostProcessor"/>
+      
+      <bean class="..." id="theBean">
+         ...
+      </bean>
+      
 
 API Changes
     * ElementFormattingStage removed



More information about the commits mailing list