Can someone at springsource please look into what is going on at the documentation URLs? I'm getting no response, and truncated responses for both html and pdf downloads and I don't have a locally...
Type: Posts; User: ideasculptor; Keyword(s):
Can someone at springsource please look into what is going on at the documentation URLs? I'm getting no response, and truncated responses for both html and pdf downloads and I don't have a locally...
That's what I was asking. Thanks
Is there any way to do message driven sending to a JMS queue? Using an outbound-channel-adapter appears to set up a queue which is then polled, whereas I want to send the message to JMS...
I have a fairly simple integration chain which, on occasion, throws a RuntimeException in order to cause a message to be rolled back so that it can be redelivered. However, whenever I do so, spring...
I'm dealing with a situation where messages in a given context must be consumed in order, but I have many contexts. The workload is such that it must be distributed across many hosts. I had thought...
I had to put the default output folder in the 'set a non-default output folder' in the aspectj compiler properties to get it to work. One would think the label specifies 'non default' because it...
I've just upgraded to STS 2.7.2 (from 2.3.2)
I had to recreate all of my projects, which wasn't unexpected. Getting everything to build wasn't too troublesome. However, my webapps all use...
A note to roo users - roo 1.1.3 suffers from a bug which effectively makes the release useless if you use generated mvc controllers. You are well advised to skip this release. It is not possible to...
Note: the roo documentation has this to say about controller methods:
"As you can see Roo implements a number of methods to offer a RESTful MVC frontend to your domain layer. All of these methods...
I have the web scaffolding for an entity generated by roo. In the controller, I pushed in exactly one method
@RooWebScaffold(path = "thermalspaces", formBackingObject = ThermalSpace.class)...
It gets more interesting.
I have the web scaffolding generated by roo. In one controller, I pushed in exactly one method
@RooWebScaffold(path = "thermalspaces", formBackingObject =...
OK, now I'm starting to think that this is a critical roo bug. I attempted to create an entirely new entity just to see what the generated code would look like.
I executed the following command...
For the record, I've got the following @RooEntity annotation
@RooEntity(identifierColumn="account_id", schema="some_schema", table="acc")
public class Account {
}
I have a project that was not the result of a db reverse engineering. It was built entirely in roo (1.1.3). However, I'd like to change things like the schema used for certain entities and the...
Not really. Seems like I'll have to learn my way around maven pretty well before I'd be able to figure out how to use that.
mvn assembly:single creates a jar that contains all of the...
I haven't tried it, but I'd start by looking at what the browser is actually sending. Is it correctly including dateofbirth=xyz in the post data? At the moment, it isn't clear if the problem is in...
I have a roo application, but I also need to have access to the entity lifecycle functionality in an environment that can run java classes (matlab, to be specific). I really don't want to have to...
I guess it only triggers that method once during initialization - to determine if it needs to wrap the class in a proxy and then it handles the other methods the first time they are called. However,...
I have 3 methods that use either PreAuthorize or PostFilter. It happens that the first of those 3 methods uses PostFilter. That works beautifully. However, PreAuthorize on the other 2 methods...
I plan to resolve this by just setting a param in the ServletContext during the initialization phase. ServletContextAware interface gives me access (though perhaps I can @Autowire an object of type...
The problem:
I needed to overload the session cookie hostname and the only reliable way to do that in tomcat 6 is to overload the HttpServletRequest object. I need to pass a config value to the...
Is there a reason why there is nothing in any of the documentation which simply lists the direct dependencies of the blazeds integration project? Maven shouldn't be a requirement just to discover...
well, I did the search and a solution was readily available via this thread: http://forum.springsource.org/showthread.php?t=50342
I usually try to figure these things out for myself or at least spend some time searching, but I've got too much on my plate at the moment, so I thought I'd use up some forum karma and just ask:
...
OK, it doesn't seem to be a general problem with advice in one context file and advisee in another. Instead, it is related to the way spring constructs the context for a webapp. The files in the...