Home > Rich Internet Applications > Flex, Spring and BlazeDS: the full stack! ERRATUM

Flex, Spring and BlazeDS: the full stack! ERRATUM

October 17th, 2008

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.

Share and Enjoy:
  • description
  • Digg
  • del.icio.us
  • Slashdot
  • e-mail
  • Facebook
  • Google
  • blogmarks
  • Furl
  • StumbleUpon
  • Technorati
  • TwitThis
  • Reddit

Rich Internet Applications , ,

  1. November 26th, 2008 at 14:08 | #1

    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.

  1. No trackbacks yet.