-
Notifications
You must be signed in to change notification settings - Fork 8
Release 2.0
Moo v2.0 has not yet been released. It started from a few external user requests and snowballed into a major release with multiple modules and significant internal refactorings.
Although the issue list for the release contains more information, the features of v2.0 are summarized below.
Moo v1.0 used an expression library, MVEL, to enable translation expressions that could reach within nested objects or call out to static classes. While MVEL is a solid choice for an expression language, coupling Moo so directly to it had some problems.
For instance, Moo used MVEL for all source property retrieval, which meant that source properties could not be retrieved from private fields, which resulted in a feature request.
I also encountered a few frustrations with MVEL that made me wish the relationship to MVEL were a bit more arm's length. I wrote up some of my concerns in a blog post, if you want to read more about it.
Ultimately, I decided that I did want to continue to use Moo, but that I wanted flexibility for myself and for other people who were using Moo who didn't need MVEL or who wanted the option of using when it added value and not using it when it wasn't needed.
In order to do this, I had to convert Moo to a multi-module project with two modules, moo-core
and moo-mvel
. If you're upgrading from a previous version of Moo, you'll probably want to look at the Upgrading notes below to see how to make the transition as smoothly as possible.
While extracting Moo from the core module, I took the opportunity to upgrade the version to MVEL 2.0.19 and to do some work around precompiling and retaining the MVEL expressions.
(see #14, #83, #9, Extensions)
Source property values are now retrieved using explicit SourceProperty
classes, which are created by SourcePropertyFactory
classes. This is more explicit and helped enable the MVEL refactoring. There may be other SourcePropertyFactory
instances in the future, but for now most of you probably won't need to interact directly with these.
It is now possible to translate a collection by extracting part of each item. For instance, you might collapse a more complicated object to its name during translation:
@CollectionProperty(itemSource="name")
Set<String> roles;
(see #82)
You can now translate objects to instances of String
using the built-in toString() implementation. This is perhaps the first value type translation (see Translating to ValueTypes).
When Moo translates an object, collection or map property, it constructs an instance of the target type, target collection type or target map type, then populates the object's properties, collection's items, or map's keys and values.
This works well for the common case, but if the target type is an interface, or the root of a class hierarchy where the desired target type might be one of the subclasses in the hierarchy, Moo might not be doing what you want it to. With Moo v2.0, you can customize this behaviour by replacing the default TranslationTargetFactory
used to construct the object, collection or map.
(see Translation Target Factories)
Upgrading from one version of Moo to another is usually not a great deal of work, but there are, at times, changes that you should be aware of or even backwardly-incompatible changes that could pose problems.
Prior to Moo v2, if you were using Moo, you were using MVEL implicitly. In Moo v2, that becomes a more explicit choice, which is mostly a good thing, but it does mean that when you're upgrading, you'll need to decide if MVEL is important to you.
If you're not sure, I'd suggest starting with Moo Core, and only upgrading to MVEL if you're sure that you need it. If you know that you want to use the MVEL extension to Moo, or you'd like to give it a try, then use the moo-mvel artifact instead.
You can read more about moo-mvel on the Extensions page, and more about Getting Moo.
Prior to Moo v2, itemTranslation
was used as the @Translation
attribute used to refer to the class that should be used for the item.
During the Moo v2 development process, this was changed to itemClass
, which is perhaps slightly more clear, and itemTranslation
was repurposed for the translation expression. However, the translation expression was later changed to itemSource
to be consistent with other uses of source expressions.
Having said that, I still prefer the new itemClass
name for the attribute, so I’m sticking with it, taking the v2.0 line as an opportunity to introduce some backwardly-incompatible changes, which I hope won’t cause too much pain for those of you already using Moo.
Of course, this means that if you were using the itemTranslation
attribute, you need to change that to itemClass
when you upgrade to Moo v2.0.
(see #82)
During the extensive changes for Moo v2.0, I took the time to make handling of sources more explicit and complete. In the process, I changed several ‘translation’ expressions to ‘source’ expressions, which match the ‘source properties’ that underly them.
This has resulted in some change to annotations as well as error messages and internals, such as:
-
translation
attribute on@Property
changed tosource
. -
translation
attribute on@CollectionProperty
changed tosource
.
This is consistent with new annotations and classes as well:
-
@MapProperty
hassource
,keySource
,valueSource
- the new
SourcePropertyFactory
interface
Most of you have probably not needed to care what the ordering of property translation is in Moo. Prior to v2.0, this order was undefined. In Moo v2.0, the order cannot be controlled, but it is partially defined, which should solve a class of potential and subtle problems.
- Five Minute Introduction
- Getting Moo
- Translating Object Properties
- Translating Collection Properties
- Translating Map Properties
- Source Expressions
- Access Modes
- Translating to Value Types
- Extensions
- External Objects in Translation
- Ignoring Properties
- Updating Collections
- Translation Target Factories
- Nested Updates
- Optional and Required Properties
- Order of Property Translation
- Constructors
- Lookup on Update
- Caching
Releases
Background