This document describes the steps needed to upgrade the edoras one application to 1.6.0.
Please stop the edoras one server, perform all upgrade steps described below and then restart the server again at the end.
Drop form engine support
The new view engine is not experimental anymore and it’s the only supported view engine now. The experimental view engine properties have been removed. Please remove following properties from your local settings.
##############################
# Experimental configuration #
##############################
experimental.view.engine.enabled = false
experimental.view.engine.create.enabled = false
experimental.view.engine.actions.enabled = false
Actions interface changes
actionPermissionManager
bean name was changed to actionManager
. Please change the name of the bean accordingly
in the case when you override the bean in your custom code.
Bootstrap project
Here you will find a list of files which have changed in the bootstrap project since the last release. This helps you check the difference between your bootstrap project version and the current one:
-
src/main/resources/com/edorasware/bootstrap/config/one.properties
-
removal of experimental view engine properties as a part of form engine support drop
-
src/main/resources/com/edorasware/bootstrap/config/action-config.xml
-
custom
actionProviders
example -
src/main/resources/com/edorasware/bootstrap/config/one-application-context.xml
-
added custom action provider import
-
src/main/java/com/edorasware/acme/expression/AcmeService.java
-
Adjusting
AbstractActivityService
constructor and method names changes.