Search:

Type: Posts; User: Jack Punt; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    10
    Views
    3,215

    Amila, thanks for the response. The user logs...

    Amila, thanks for the response.

    The user logs in via normal web form (Spring Roo for now, which is a jsp)
    After browsing a few web pages, they may select to load a .swf

    The swf will then...
  2. Replies
    10
    Views
    3,215

    What excellent timing! I was just about to ask: ...

    What excellent timing!
    I was just about to ask:



    In my case, I'm looking for the server-side logic or Filter that will reject the BlazeDS connection if the session is/was not already...
  3. Replies
    2
    Views
    630

    I have resorted to listing *all* the...

    I have resorted to listing *all* the scaffold-generated controllers individually in an <intercept-url />

    <intercept-url "/foo/**" access="hasRole('ROLE_ADMIN')" />
    <intercept-url...
  4. Is it related to:...

    Is it related to: http://forum.springsource.org/showthread.php?t=99681 ?
    That is, are the commands failing? (as shown in log.roo)
    If so, then yes; others are seeing the effect.
  5. One approach (that I have used) is to hack the...

    One approach (that I have used) is to hack the table.tagx to replace

    <spring:eval expression="item[column]" var="colTxt" />

    with

    <spring:eval...
  6. Indeed, the generation is tied to the signature....

    Indeed, the generation is tied to the signature.
    So push-in the signature that you want to stop generating,
    and bind it to a path that will not conflict.
  7. Note: in the original ROO-1946...

    Note: in the original ROO-1946 report, all my Entities had a version column (but still failed)
  8. maybe remove mypath form the Controller and apply...

    maybe remove mypath form the Controller and apply to the method:


    @RequestMapping("/foo")
    class MyController {

    @RequestMapping(value="/{myPath}", method = RequestMethod.GET,...
  9. Replies
    2
    Views
    745

    Maybe due to issue in:...

    Maybe due to issue in: http://forum.springsource.org/showthread.php?t=100807
  10. Replies
    5
    Views
    7,142

    Maybe this applies: (see caveate about using...

    Maybe this applies:

    (see caveate about using maven 2.x in https://jira.springsource.org/browse/ROO-1947)
  11. Since Roo-1.1.1 released without the patch, you...

    Since Roo-1.1.1 released without the patch, you need to make your own roo:
    You need to use git to pull the source, and use maven (3.x) to build your own roo installation.

    The roo main page or...
  12. Replies
    12
    Views
    2,307

    also problems with standalone roo:...

    also problems with standalone roo: http://forum.springsource.org/showthread.php?t=99681

    the problem comes and goes, maybe rebooting windows helps?
  13. Help: roo-1.1.1 fails in WebScaffoldMetadata.getDatePatterns

    Using 1.1.1.RELEASE [rev 156ccd6] i get java.lang.NullPointerException
    at org.springframework.roo.addon.web.mvc. controller.WebScaffoldMetadata.getDatePatterns (WebScaffoldMetadata.java:1231)...
  14. To get started, look in your...

    To get started, look in your MagazineController.java (or MagazineController_Roo_Controller.aj)

    You will find the @RequestMapping annotations that define which URLs invoke which methods.
    Move the...
  15. roo shell [failed] *not* after a while...

    I also suffer from this.
    In my case I can start roo shell (even after having rm'd the cache)
    hint works once, then things start failing:

    // Spring Roo 1.1.1.RELEASE [rev 14ee624] log opened at...
  16. Roo-1.1.1: missing imports in _Roo_Controller.aj

    Built the latest roo-1.1.1 from git; (with the new Conversion Service [rev 43c185c]),
    now the geneated _Roo_Controller.aj get multiple errors for missing imports in encodeUrlPathSegment:


    import...
  17. Replies
    3
    Views
    1,492

    For command line git, edit .git/config to use the...

    For command line git, edit .git/config to use the http url.
  18. Replies
    12
    Views
    3,613

    @ResponseBody and Exceptions?

    While we're on the topic of @ResponseBody and JSON,
    How does one generate the 'error' response for the javascript side?

    The Spring-MVC (Roo) framework for my service catches any exception that is...
  19. Replies
    11
    Views
    3,710

    neo, I just saw your post in the 'integration'...

    neo,
    I just saw your post in the 'integration' forum.
    I have not tried to use Spring Integration for this,
    but went straight to JMS (planning for horizontal scaling)
    you can see the result in...
  20. Patch to ConcurrentSessionFilter

    Turns out the restored Session is available!
    So we add the else clause (line 107) to inject the session being used into the sessionRegistry:



    if (info != null) {
    ...
  21. @rwinch, thanks for the suggestion. Rather...

    @rwinch, thanks for the suggestion.

    Rather than persist/restore the registry at shutdown/startup (seems redundant if the Sessions are persisted)
    I was thinking that at some point tomcat must...
  22. ConcurrentSessionFilter does not register session after tomcat restart

    Login to web app from Firefox.
    Stop and restart server (from STS)
    Login to web app from Chrome (creates a new SessionInformation in sessionRegistry)
    Refresh page in Firefox: it works! ...
  23. dateTimePattern="${entity_field_date_format}" in show.jspx

    Roo generates: dateTimePattern="${entity_field_date_format}" in show.jsp,
    But I'm not clear on where this value is set.
    I have @DateTimeFormat(style = "SS") declared on my field, and that works in...
  24. search the forum, this has been discussed and...

    search the forum, this has been discussed and documented.
    i just don't recall the config file in which you say: keep vs create...
  25. Replies
    9
    Views
    2,209

    Just to confirm that the input.tagx in ROO-1695...

    Just to confirm that the input.tagx in ROO-1695 does work.
    Some examples:

    <!-- prefer client to pre-validate the email -->
    <field:input field="email" id="c_my_pkg_domain_Member_email"...
Results 1 to 25 of 138
Page 1 of 6 1 2 3 4