3.1.2-GA to 3.1.3-GA Migration
All of the migration steps outlined in the 3.0.10 to 3.0.11 Migration are also applicable to 3.1.3-GA. Additionally, the following are specifically in regards to 3.1.3-GA:
Fix the path of admin.js
In applicationContext-admin.xml
, replace the following:
<bean id="blJsFileMap" class="org.springframework.beans.factory.config.MapFactoryBean">
<property name="sourceMap">
<map>
<entry key="admin/admin.js" value-ref="blJsFileList"/>
<entry key="admin/admin.css" value-ref="blCssFileList"/>
</map>
</property>
</bean>
with this:
<bean id="blJsFileMap" class="org.springframework.beans.factory.config.MapFactoryBean">
<property name="sourceMap">
<map>
<entry key="admin.js" value-ref="blJsFileList"/>
<entry key="admin/admin.css" value-ref="blCssFileList"/>
</map>
</property>
</bean>
Note that this is a required migration and some admin functionality might not work without it.
The exhaustive diff of changes that we made to the DemoSite project is on GitHub