Search:

Type: Posts; User: agentgt; Keyword(s):

Search: Search took 0.03 seconds.

  1. Using Transaction Synchronization w/o RabbitMQ transactions for better performance

    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...
  2. Spring MVC Netty Version (ie containerless)

    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...
  3. Finally figured it out. There were 3 issues that...

    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...
  4. This is getting ridiculous. I deleted all of...

    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...
  5. Yep I changed all of them. And it still did not...

    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...
  6. Roo will not regenerate AspectJ files. No error logged.

    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...
  7. Found some info.

    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...
  8. Asynchronous HTTP support in Spring MVC (aka nodejs style request handling)

    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). ...
  9. Replies
    0
    Views
    247

    Scalate as a View option?

    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.
  10. Replies
    6
    Views
    686

    Thanks @jbbarquero I would say the one thing...

    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...
  11. Replies
    6
    Views
    686

    We use Spring Roo for SnapHop!

    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 :)
    ...
  12. Replies
    0
    Views
    1,081

    Specifying Task Executor with @Async

    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")...
  13. Replies
    8
    Views
    4,082

    Roo 1.1.1 on 1/11/11

    I can't help but notice that Roo 1.1.1 was released on 1/11/11
    Just a coincidence?
  14. Replies
    3
    Views
    1,017

    Did this get into the M1 Release?

    Did this get into the M1 Release?
  15. Replies
    1
    Views
    1,203

    You need to reimport the project as a maven project

    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...
  16. I think I somewhat agree

    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...
  17. Where should I add custom Entity methods? Best Practice?

    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....
Results 1 to 17 of 17