Search:

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

Search: Search took 0.02 seconds.

  1. How to correctly ack AMQP messages after the HTTP request completed

    I have a controller method consuming messages from a AMQP queue - but I do not want to acknowledge those messages until I am sure as possible that the client that did the http request got the data...
  2. No, the only way I can get my project working is...

    No, the only way I can get my project working is with those classpath attributes, but they do not match my pom.xml and disappear when I update project configuration from pom - with or without the...
  3. @Andrew, more bad news. Even if I remove the...

    @Andrew, more bad news. Even if I remove the whole build block from the pom I get that message. It seems that your fix to the classpath is what is causing it. When I update the project configuration...
  4. Ok, is this a temporary fix? Because this would...

    Ok, is this a temporary fix? Because this would probably break my maven builds (not that it matters right now, as I build from eclipse).
  5. Hmm indeed. That did help it so far that it got...

    Hmm indeed. That did help it so far that it got the maven dependencies into the build path, but now I got this error:

    "Project configuration is not up-to-date with pom.xml. Run project...
  6. When I select "Maven Managed Dependencies" from...

    When I select "Maven Managed Dependencies" from the "Add library" dialog under Aspect path, I get a dialog saying "Use Maven project settings" to configure Maven dependency resolution.

    See...
  7. @Andrew here is my .project: and .classpath:

    @Andrew here is my .project:


    and .classpath:
  8. @Andrew, I did that, and the build path etc are...

    @Andrew, I did that, and the build path etc are all empty - because just as you said they are supposed to be handled by maven already. But they are not, because my spring aspects are not woven. Any...
  9. Ok, I just realized how to do it (by update site)...

    Ok, I just realized how to do it (by update site) and that it was already installed. However, it did not fix my problem which is that my spring-aspects maven dependency is not being weaved by AJDT,...
  10. How do I install the AJDT configurator? Simply...

    How do I install the AJDT configurator? Simply clicking on http://dist.springsource.org/release/AJDT/configurator/ does only give me an error (The specified key does not exist.) and I can not find...
  11. Replies
    3
    Views
    1,311

    Mike, I ended up implementing my own AOP-based...

    Mike,

    I ended up implementing my own AOP-based ACL that I use to secure all domain object methods like this:

    @AccessControlled(Permission.VIEW)
    public String getName();

    I ended up doing...
  12. Replies
    3
    Views
    1,311

    How do I apply ACL to domain objects?

    I am trying to secure my domain objects using @PreAuthorize. I can easily check access to objects by using #-references to parameters but how can I check access against the current object that is...
  13. Replies
    4
    Views
    1,273

    ACL - listing objects with permission

    Hi,

    I am wondering if there is a way to use Spring ACL, and list all objects that a user has permission to access in some way? I know that you can get permissions if you have a reference/id to the...
  14. Replies
    2
    Views
    1,506

    Yes, actually I did manage to get it to work...

    Yes, actually I did manage to get it to work after installing tomcat manually and then adding it. Phew :)
  15. Replies
    2
    Views
    1,506

    Unable to debug app in tomcat in STS 2.1.0

    It used to work in the previous release, but now when I try to debug and then "Run on server" nothing happens. Also, I do not get all the normal output from tomcat that I am used to. I install tomcat...
  16. Replies
    3
    Views
    1,020

    Ah, ok - that might be it. Why can it not be...

    Ah, ok - that might be it. Why can it not be transactional?

    Thanks,
  17. I seem to be experiencing the same problems as...

    I seem to be experiencing the same problems as you. Have you found a solution? I am the latest Spring 3 release.

    Here is my thread about what seems to be the same problem:...
  18. Replies
    3
    Views
    1,020

    Can not get transactions to work

    Hi,

    I used Spring Roo to generate a project with Hibernate, JPA and MySQL. I am using annotation-driven transaction management, but I get this error when calling the addUser method in the user...
  19. That solves my problem. Thanks Martin!

    That solves my problem. Thanks Martin!
  20. Why am I forced to have a userDetailsService?

    I´ve implemented my own AuthenticationProvider, but was also forced to implement a UserServiceProvider, otherwise Spring security threw an exception. The documentation said that the...
Results 1 to 20 of 20