Search:

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

Page 1 of 20 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    0
    Views
    76

    Karl David Moore: I Champion Spring

    I champion spring in the following ways...

    I have answered 8000+ of questions on the Spring Forums.
    I'm a moderator on the Spring Google+ page and frequently delete spam messages.
    In my company...
  2. Replies
    2
    Views
    709

    Just because something is transactional doesn't...

    Just because something is transactional doesn't mean that it has to block the database, it very much depends on the database, isolation levels and locking. The source for OSIVF might help you...
  3. Replies
    1
    Views
    668

    In the transaction definition you're setting...

    In the transaction definition you're setting readOnly and this doesn't seem to be supported. Did you paste the error into google at all? There seem to be quite a few discussions about it.
  4. It might help to know more about what you're...

    It might help to know more about what you're trying to do, but yes it's possible to have a heirarchy of ApplicationContexts. If you have a look at ClassPathXmlApplicationContext for instance the...
  5. Replies
    6
    Views
    2,023

    If it's a hash then you're really not supposed to...

    If it's a hash then you're really not supposed to be able to decrypt it, computationally infeasible. You can use something like rainbow hash cracking but if it's salted then you're out of luck.
  6. Replies
    2
    Views
    718

    If you don't want other beans to access a...

    If you don't want other beans to access a reference you could use inner beans....
  7. Replies
    1
    Views
    930

    This article was quite useful when I was looking...

    This article was quite useful when I was looking into the alternatives.
    http://www.ibm.com/developerworks/java/library/j-sr2.html
  8. You can get the number of beans from the...

    You can get the number of beans from the ApplicationContext, but if you want to ensure they're all singletons you could get the beanNames from the context, iterate and call isSingleton to count how...
  9. Could you define a BeanFactoryLocator with...

    Could you define a BeanFactoryLocator with multiple ApplicationContexts?...
  10. There's nothing to stop you using the XML files...

    There's nothing to stop you using the XML files and then once the context has initialised replacing one of the injected members with a mock programmatically.
  11. Replies
    2
    Views
    631

    I don't understand, what exactly is the problem...

    I don't understand, what exactly is the problem and isn't working?
  12. Replies
    5
    Views
    1,369

    Unless I'm missing something why can't you use...

    Unless I'm missing something why can't you use the EasyMock Class Extension?
  13. Are you talking about mixing programmatic and...

    Are you talking about mixing programmatic and declarative transaction management with Spring or is the old programmatic stuff something of your own making?
  14. Is it possible to see the test code that's...

    Is it possible to see the test code that's driving this experiment?
  15. Replies
    8
    Views
    1,166

    Generally you're going to be defining the...

    Generally you're going to be defining the transaction at the service layer, and thus everything contained within that is transactional (if everything is a correctly configured and thus...
  16. Replies
    8
    Views
    1,691

    I can't see the OSIV filter at any point in the...

    I can't see the OSIV filter at any point in the stacktrace.
  17. Replies
    8
    Views
    1,691

    I can see those files, but I really need to see...

    I can see those files, but I really need to see the stacktrace and the code that's calling into this that's causing the issues.
  18. Replies
    5
    Views
    1,467

    Well I guess there aren't that many options...

    Well I guess there aren't that many options available to you then ;).
  19. Replies
    8
    Views
    1,691

    It would be useful to see the stacktrace, the...

    It would be useful to see the stacktrace, the code that's causing the problem and you're configuration. [ code] [ /code] tags are appreciated. OSIV isn't necessarily going to prevent all lazy init...
  20. Is it a problem that it works ;), I'd guess not....

    Is it a problem that it works ;), I'd guess not. You might want to avoid cyclic dependencies too often though as that might be symptom that what you're doing is wrong.
  21. Replies
    5
    Views
    1,467

    Well one thing that gets me is people that...

    Well one thing that gets me is people that complain about it but don't do anything about it. Any chance you take some time out (even if it has to be your own time), just to refactor a little bit of...
  22. It's probably not a good idea to use this...

    It's probably not a good idea to use this toString as well, as you really don't want lazy collections to always be loaded. Just specify only simple properties which aren't going to require another...
  23. There are a couple of ClassNotFoundExceptions in...

    There are a couple of ClassNotFoundExceptions in there so I'd presume you are missing JARs from your classpath.
  24. Is it possible to see the snippets of...

    Is it possible to see the snippets of configuration and code you are using?
  25. Replies
    2
    Views
    1,053

    Might be useful to post a stacktrace so it's...

    Might be useful to post a stacktrace so it's possible to see where the exception is actually coming from.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4