Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23

Thread: Built a great Spring Roo-based project? Like a free kangaroo and t-shirt? :-)

  1. #11
    Join Date
    Jul 2010
    Posts
    5

    Default

    hi Ben

    i have developed project on roo --its very nice tool to use ---

    i am using it continuously in my all web projects

    i am intersted to take kangaroo

    pls let me know what to do

    thanks

  2. #12
    Join Date
    Jun 2010
    Posts
    440

    Default

    Hi Ashoo,

    It will be great you send a link to visit of your referred Roo project...
    Here is mine: https://joseanportafolio.org/showcases


    Thx
    JD

  3. #13
    Join Date
    Nov 2010
    Location
    San Diego
    Posts
    18

    Default

    Quote Originally Posted by sujitpal View Post
    Would these qualify?

    Here is a set of posts I wrote as I was developing my first Roo application. It is a typical database backed web application.

    http://sujitpal.blogspot.com/2010/07...th-of-ktm.html
    http://sujitpal.blogspot.com/2010/07...mizations.html
    http://sujitpal.blogspot.com/2010/07...-security.html
    http://sujitpal.blogspot.com/2010/08...ntrollers.html
    These are a big help to me: thanks for doing this write-up.

  4. #14
    Join Date
    Dec 2010
    Posts
    3

    Default Roundtrip Roo JPA App

    I'd like to share a Roo App into the vaccuum that is round-trip roo scripting.

    This is a github project url with the roo-script code generator sitting inside of a sample app, for which it will reproduce a nice default roo config with a few commented options.

    project url
    https://github.com/jnorthrup/roundtrip-roo-jpa

    sample output
    https://github.com/jnorthrup/roundtr...ple.output.roo

  5. #15
    Join Date
    Aug 2004
    Location
    Sydney, Australia
    Posts
    2,768

    Default

    Everyone, just a reminder we still have free kangaroos and t-shirts and other swag to give away. All you need to do is publish info on your Spring Roo project publicly, and then email the URL to balex@vmware.com and put "[kanga]" in the subject line. I'll arrange for your schwag to be sent ASAP!

    Enjoy the goodies.

    Cheers
    Ben
    Ben Alex
    Project Founder, Spring UAA, Spring Roo and Spring Security

  6. #16
    Join Date
    Nov 2010
    Location
    2k/10, Aditya Garden City, Warje, Pune-411052, India
    Posts
    22

    Smile

    Hi All,
    I created a Spring Roo Addon which injects security into existing Spring Roo Project.

    TypicalSecurity is a Spring Roo add on which injects following features in a Spring Roo App with single command
    1. Databased User Role Security
    2. Forgot Password
    3. Change Password
    4. User Registration with recaptcha and sending activation email
    5. User Activation

    Please note the project is far from stable, the default path works for now

    http://code.google.com/p/spring-roo-...ical-security/
    http://code.google.com/p/spring-roo-...GettingStarted

    The YouTube Video for the same is here - http://www.youtube.com/my_videos_tim...id=Y-kuYj8vsYU

    Let me know if I qualify?

    Cheers,
    Rohit

  7. #17
    Join Date
    Aug 2004
    Location
    Sydney, Australia
    Posts
    2,768

    Default

    Hi Rohit

    Yes, you qualify. Please email balex@vmware.com with [kanga] in the subject line and the details (address, shirt size etc) we need to get one away to you.

    Cheers
    Ben
    Ben Alex
    Project Founder, Spring UAA, Spring Roo and Spring Security

  8. #18
    Join Date
    Dec 2010
    Posts
    3

    Default Roo on NIO Httpd 1xio

    I have created a trunk revision of 1xio specific to GWT Requestfactory currently working for our roo codebase.

    http://code.google.com/p/1xio/wiki/GWTRequestFactory

    right now it serves http POST method via RequestFactory and GET method from the $CWD which is sufficient for static hosting of gwt as an embedded app.

    i would be interested in collaborating with roo testers using jms who might want fine-grained REST control on gwt frontends

  9. #19
    Join Date
    Jun 2011
    Posts
    2

    Default

    Sujit I have looked at all of your links below they are very good.
    I'm new to this forum and i have recently started evaluating Spring Roo for one of our upcoming assignments. I always have a concern of not having a Service layer in the Roo model. But my project would involve performing CRUD operations on multiple table per single business request and i dont want all those calls to be made from the Web controller.
    had any one had similar situation?? i tried to add a service layer after creating a spring roo sample but i was totally unseccessful. My main question is here is it even advisable to add a Service layer or should i just start looking for alternates to spring roo?

    Thanks a lot
    Quote Originally Posted by sujitpal View Post
    Would these qualify?

    Here is a set of posts I wrote as I was developing my first Roo application. It is a typical database backed web application.

    http://sujitpal.blogspot.com/2010/07...th-of-ktm.html
    http://sujitpal.blogspot.com/2010/07...mizations.html
    http://sujitpal.blogspot.com/2010/07...-security.html
    http://sujitpal.blogspot.com/2010/08...ntrollers.html

    Here is another one (slightly longer) that I built recently that replaces the persistence layer with a custom one (JSON over HTTP to a remote webservice). This just depends on Roo for the basic scaffolding, but then puts everything behind login, and adds the user to every query, and adds a Dojo rich text editor for some textarea forms.

    http://sujitpal.blogspot.com/2010/09...-alfresco.html

    If you are giving out T-shirts, my size is XL :-). A toy kangaroo would be nice too, would fit in nicely with my penguin and mule...

    -sujit

  10. #20
    Join Date
    Jan 2010
    Location
    Mislata - Valencia - Spain
    Posts
    162

    Default

    There is an addon from gvNIX team that allows you to create a service layer.

    The bundle symbolic name for service add-on is org.gvnix.service.roo.addon. To install it:

    pgp trust --keyId 0xC5FC814B
    addon install bundle --bundleSymbolicName org.gvnix.service.roo.addon

    Use example:

    # Create a service layer class
    service class --class ~.service.MyServiceClass

    # Add operations to the service layer class
    service operation --name checkString --service ~.service.MyServiceClass
    service operation --name returnString --service ~.service.MyServiceClass --return java.lang.String --exceptions java.lang.Exception

    It also the addon allows you to expose class operations as web services and import external web services as a local service class, more info at http://code.google.com/p/gvnix/wiki/...ity_feature s and http://code.google.com/p/gvnix/wiki/...ces_Management)

    You can report any issue at http://code.google.com/p/gvnix/issues/list. Send your doubts to http://listserv.gva.es/cgi-bin/mailm.../gvNIX_soporte

    Kind regards
    Mario Martínez Sánchez
    Project Manager & Software Architect
    --------------------------
    Disid Technologies S.L.
    http://www.disid.com
    --------------------------
    gvNIX
    http://gvnix.googlecode.com
    http://www.gvnix.org

Posting Permissions

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