Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. I found solution - as it was mention in...

    I found solution - as it was mention in http://forum.springframework.org/showthread.php?t=28992 all you need is to add throwAdvice to postInterceptors of TransactionProxyBean, so that it will fire...
  2. how to add throwAdvice interceptor to transactionProxyBean ?

    Say, I have a service class that is proxied by transactionProxyBean. How can I add throwAdvice to proxied class after that w/o actually wrapping proxied class into ProxyBeanCreator in case when I...
  3. Is it possible to add throwAdvice to...

    Is it possible to add throwAdvice to transactionProxyBean to handle exceptions thrown by proxied bean ?
  4. do you use datasource in jdbc implementation of...

    do you use datasource in jdbc implementation of DAO or Hibernate ?
    How do you weave your transaction manager with DAO/Service object?
  5. Replies
    1
    Views
    754

    try to use this: ... //somewhere before...

    try to use this:


    ...
    //somewhere before calling 'find' method, set max rows to return
    getHibernateTemplate().setMaxResults(10);
    ...
    getHibernateTemplate().find("from anObject ORDER BY RAND()...
  6. Replies
    1
    Views
    661

    Currently using xDoclet2 and Hibernate3. I have...

    Currently using xDoclet2 and Hibernate3. I have not tried to use multiline tag attributes and not going to switch back to xDoclet1.x
    However, as I can see from CodeHaus bag tracking, there is an...
  7. Replies
    1
    Views
    661

    Multiline tag description in xdoclet?

    Any ideas?
  8. I have 0 responses overthere

    I have 0 responses overthere
  9. None one uses such feature like DML...

    None one uses such feature like DML update/insert/delete operations in Hibernate 3.1 ?
  10. How to remove whole object graph using DML-Style removal?

    Hi,
    In Hibernate3.1x it is possible to use DML-style for update/insert/delete operations on Hibernate entities. Suppose I have an object graph that I need to remove by deleting parent object.
    In...
  11. Replies
    2
    Views
    980

    I found out that in order to release resources...

    I found out that in order to release resources you need to run Jotm.stop() method in order to stop JTA service. This method is called for Jotm instance created by Spring after 'shutdown' event for...
  12. I found out that in order to release resources...

    I found out that in order to release resources you need to run Jotm.stop() method in order to stop JTA service. This method is called for Jotm instance created by Spring after 'shutdown' event for...
  13. Why JOTM keeps running after apps' main method finsihed?

    I have stand-alone java application, configured to use JOTM as JTA impl. for transaction managment over database connection that spans more than 1 database.
    The appliacation runs w/o errors, and...
  14. Replies
    2
    Views
    2,091

    Yeah, Spring dist. is missing many of jars for...

    Yeah, Spring dist. is missing many of jars for jotm, so that the you better download full archive from ObjectWeb to get them all at once
  15. Replies
    4
    Views
    1,599

    This class is in Java Connector jar of version...

    This class is in Java Connector jar of version 1_5 (which is the part of latest J2ee).
    You can get this jar from libs dir of JOTM distrib or from spring-with-dependencies 1.2.1 dist.
  16. Replies
    2
    Views
    980

    Hey, I got exactly the same problem too - my...

    Hey,
    I got exactly the same problem too - my program remains running while main method already finished its work. I use JOTM to manage transactions in my Spring-featured java application.
    Did you...
  17. I found thay my simple stand-alone java class...

    I found thay my simple stand-alone java class with main method doen't stop running after it reaches last line in code. It continue to stay in 'running' mode. What to do with that?
    I use...
  18. Replies
    5
    Views
    1,042

    I was able to configure JOTM but once my...

    I was able to configure JOTM but once my stand-along class finished its work, it still running. Is there any chance that some threads are still running while exiting 'main' method in classs?
  19. Replies
    5
    Views
    1,042

    jwray, you right, I simply was not looking so...

    jwray, you right, I simply was not looking so wide on this problem.
    Will try out JOMT impl for JTA.
  20. Replies
    5
    Views
    1,042

    They say Spring application doen't require j2ee...

    They say Spring application doen't require j2ee to run, so all you need to do is to make some changes in xml files and thats all. For single datasource I can easely switch between driver managed...
  21. Replies
    5
    Views
    1,042

    is it possible to use JTA w/o J2ee container

    I need to have a transaction manager for multi-database application that runs as stand-along java application.
    So, I defined 2 datasource, 2 sessionFactories. Some dao has datasource1, some other...
  22. Replies
    3
    Views
    968

    How does anyone impl. searchable pages with edit...

    How does anyone impl. searchable pages with edit forms ?
  23. Replies
    3
    Views
    968

    impl search page using GET method

    Hi
    I have a search page with some muliple search criteria input area.
    Once user clicked 'search' button, a GET request is issued to SearchMyDataController. It is ok to use AbstractCommandControler...
  24. Replies
    4
    Views
    1,448

    What is the benifit of...

    What is the benifit of getHibernateTemplate.enableFilter(name) if we still need to do the 'seesion.setFilterName(name).setParameter()' to setup values for filter's paramers ?

    It looks like it is...
  25. I solved problem using filter in H3 - applyed...

    I solved problem using filter in H3 - applyed filter to collection and enabled it when needed.

    In this case cirteria for 'one-to-many' assosiation moved from 'where' clause to 'join' clause of...
Results 1 to 25 of 42
Page 1 of 2 1 2