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...
Type: Posts; User: Jack Punt; Keyword(s):
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...
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...
I have resorted to listing *all* the scaffold-generated controllers individually in an <intercept-url />
<intercept-url "/foo/**" access="hasRole('ROLE_ADMIN')" />
<intercept-url...
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.
One approach (that I have used) is to hack the table.tagx to replace
<spring:eval expression="item[column]" var="colTxt" />
with
<spring:eval...
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.
Note: in the original ROO-1946 report, all my Entities had a version column (but still failed)
maybe remove mypath form the Controller and apply to the method:
@RequestMapping("/foo")
class MyController {
@RequestMapping(value="/{myPath}", method = RequestMethod.GET,...
Maybe due to issue in: http://forum.springsource.org/showthread.php?t=100807
Maybe this applies:
(see caveate about using maven 2.x in https://jira.springsource.org/browse/ROO-1947)
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...
also problems with standalone roo: http://forum.springsource.org/showthread.php?t=99681
the problem comes and goes, maybe rebooting windows helps?
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)...
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...
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...
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...
For command line git, edit .git/config to use the http url.
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...
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...
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) {
...
@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...
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! ...
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...
search the forum, this has been discussed and documented.
i just don't recall the config file in which you say: keep vs create...
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"...