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...
Type: Posts; User: PiotrB; Keyword(s):
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...
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...
@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...
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).
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...
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...
@Andrew here is my .project:
and .classpath:
@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...
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,...
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...
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...
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...
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...
Yes, actually I did manage to get it to work after installing tomcat manually and then adding it. Phew :)
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...
Ah, ok - that might be it. Why can it not be transactional?
Thanks,
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:...
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...
That solves my problem. Thanks Martin!
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...