Results 1 to 2 of 2

Thread: Roo and Spring Flex & Roo osgi scr list problems

Hybrid View

  1. #1
    Join Date
    Apr 2011
    Posts
    4

    Default Roo and Spring Flex & Roo osgi scr list problems

    See Solution below!
    Last edited by jblouir; Apr 18th, 2011 at 03:00 AM.

  2. #2
    Join Date
    Apr 2011
    Posts
    4

    Default Additional Notes

    Ok managed to get everything working finally.

    I downloaded the newest SpringSource Tool Suite 2.6.0 Release, and used the Spring Roo 1.1.3 release that came packaged with the sts, as well as using the flex addon from the most recent nightly build from here

    http://s3browse.springsource.com/bro...UILD-SNAPSHOT/

    and the annotations from

    http://s3browse.springsource.com/bro...UILD-SNAPSHOT/

    The procedure to start a new project is...

    From SpringSource Tool Suite
    File -> New Spring Roo Project
    Give the project a name and package name, project type standard
    Make sure your using Roo 1.1.3.RELEASE
    Then click Finish

    Once the project is generated double click on the "pom.xml" then click the "pom.xml" tab at the bottom of the Overview, inside the xml insert the following tag inside of the <respositories> area...

    <repository>
    <id>spring-snapshot</id>
    <name>Spring Portfolio Snapshot Repository</name>
    <url>http://maven.springframework.org/snapshot</url>
    <releases>
    <enabled>false</enabled>
    </releases>
    <snapshots>
    <enabled>true</enabled>
    </snapshots>
    </repository>


    (This step is probably optional, but its what I did) Then setup your persistence... for example "persistence setup --provider HIBERNATE --database MYSQL"

    Finally type "flex setup" and your project will be prepared to work with flex, then you should be able to use the flex remoting all / flex remoting scaffold commands!

    Now I hope we can get this for AIR too
    Last edited by jblouir; Apr 18th, 2011 at 03:00 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •