For those interested I have implemented a wrapper around Spring AMQP to make an in-memory list of pending messages that are then sent after the platform's transaction has commited.
That is if you...
Type: Posts; User: agentgt; Keyword(s):
For those interested I have implemented a wrapper around Spring AMQP to make an in-memory list of pending messages that are then sent after the platform's transaction has commited.
That is if you...
Spring 3.0.x and greater has introduced some nice decoupling of the MVC annotations and the Servlet API. Thus in theory one could create a completely different Spring Web MVC framework using Spring's...
Finally figured it out. There were 3 issues that were causing the problem.
* We had a pom.xml file in a subdirectory. For some reason this caused most of the pain.
* We also had a class with...
This is getting ridiculous.
I deleted all of the code. That is I did rm -rf src/main/java
Now the only thing in my project is my original pom file which does get upgraded and my spring config...
Yep I changed all of them. And it still did not work.
Presumably there is a logger (slf4j or similar) for Roo?
I am wonder if its trying to report an error but cannot because of the already...
We recently upgraded from Roo 1.1.5 to 1.2.1 .
Roo will not regenerate AspectJ files unless you explicetly tell it to. That is I have to add a dummy field as a work around for Roo to start...
https://jira.springsource.org/browse/SPR-8517?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#issue-tabs
Makes me wonder if I can just make my own Annotation Request Handler...
I'm curious what Spring MVC's future answer will be for handling asynchronous requests are.
The framework seems to be very tied to 1-thread-per-request model (the extensive use of ThreadLocals). ...
Has anyone tried using Scalate with Roo?
I have been tempted to switch to it but JSPX+Tiles while somewhat tedious and annoying at times generally meets my needs.
Thanks @jbbarquero
I would say the one thing that I don't like about Spring Roo is the View generation. My business partner I don't find it very useful.
For look and feel I just recommend buying...
I just wanted to let the community know that we are using Spring Roo for our mobile marketing startup SnapHop: http://snaphop.com
(actually http://app.snaphop.com)
Its unofficial launched :)
...
I like Spring 3.0 @Async but you can't seem to specify different task executors.
Ideally I would like something like:
@Async(executor="ExecutorA")
void doA();
@Async(executor="ExecutorB")...
I can't help but notice that Roo 1.1.1 was released on 1/11/11
Just a coincidence?
Did this get into the M1 Release?
I had a similar issue. It has to do with Maven and WTP integration.
I think STS does not install the m2eclipse WTP extra. So you may have to re-install that.
1. After you have created your...
I agree that aspects are generally used for multiple classes but its clear the Spring ROO project has used them for something that Java lacks: Partial Classes (see...
Lets say I want to write my own entity method for a Roo managed class that is similar to what is usually found in
*_Roo_Entity.aj
Lets assume the method is an update method and not a finder....