Flex, Spring and BlazeDS: the full stack! ERRATUM
OK, obviously there are 2 problems in my article on Adobe Developer Connection and I finally found the time to look into it:
First of all, there was a big error in one of the POMs in todolist3.zip. In todolist-web/pom.xml, if the first dependency looks like this:
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>todolist-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Then replace it with this:
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>todolist-config</artifactId>
<version>1.0-SNAPSHOT</version>
<classifier>resources</classifier>
<type>zip</type>
<scope>provided</scope>
</dependency>
And it should work fine.
The second error is in the article itself: of course, all of the namespace declarations should be xmlns:mx=”http://www.adobe.com/2006/mxml” instead of xmlns:mx=”/2006/mxml” .
I’ll try to reach ADC editor so that they can fix those mistakes. Thanks for the feedback.
This content is published under the Attribution-Noncommercial-Share Alike 3.0 Unported license.
Subscribe to the RSS feed and have all new posts delivered straight to you.

First of all, many thanks to your posting. The whole stack can be a potential reference for new projects.
After adding the fix I could successfully install the application using a few simple maven commands. Pretty amazing.
The web-application needed mysql driver to start. Although it might be better use a shared jdbc-driver in production, I fixed it by adding the following dependency to the todolist-web project:
mysql
mysql-connector-java
5.0.5
Now I have to set up the database in mysql to have the application functioning as it supposed, but I guess that’s in the previous postings.