I'm trying to setup a grails project in STS and the initial setup seems to have gone well, but I am having an issue when trying to run stuff using the built in grails shell(cmd-g). Part of my...
Type: Posts; User: MilkDud58; Keyword(s):
I'm trying to setup a grails project in STS and the initial setup seems to have gone well, but I am having an issue when trying to run stuff using the built in grails shell(cmd-g). Part of my...
I am having an issue trying to autowire two objects that share an abstract parent. I can autowire successfully if there is only one child object. As soon as I add the second object autowiring...
Is there an eta for the 0.8 release out of curiosity?
Awesome. Thanks Jeremy. Great work on this, been using nightly builds to do a ton of things lately. Let me know if I can help.
I'm trying to use @RemoteDestination with a class that has an @Autowired constructor, but @RemoteDestination seems to require a no arg constructor. Is there anyway around this or am I just doing it...
Is there an updated estimated release date for when RC1 will be available? I'm about to start a new flex/blazeds project that will rely on messaging, so just curious from a planning perspective.
I've been having an issue with remember me services throwing a cookietheftexception in the event of browser crashes and other such cases. This obviously doesn't occur a whole lot, but when it does...
Yep, it's in the interface as well. What makes this issue odd is that if I comment out the one method in that class that becomes transactional in the logs, another method becomes transactional, when...
Oops, that's actually not how it is. The actual method being called is public, I just edited the code here for conciseness by combining the public method with its helper method, but I used the...
Actually, working on my application a little more, the problem now props up just a little bit later (and I'm pretty sure this was the root cause of the previous issue). So now if I try and read an...
Hey Marten, just wanted to say thanks, it worked like a charm.
Here you go:
UserDaoImpl:
import java.math.BigInteger;
import org.springframework.dao.support.DataAccessUtils;
import org.springframework.stereotype.Repository;
Hi,
I am wrapping a block of code in an Transactional annotated method yet I still get a Lazy Init Exception due to no Session. I cannot figure out what I am doing wrong. Looking at the debug log,...