Manage a collection wrapped within another object

2009-10-17 Thread fadishei
Hello Assume that you have collection property actors in a mapped class Movie and your code works fine this way: Movie.java: ... protected ListArtist actors; ... But I need to declare this property as: Movie.java: ... protected ActorList actors ... ActorList.java: public class ActorList

Re: Manage a collection wrapped within another object

2009-10-17 Thread Nathan Maves
yes On Sat, Oct 17, 2009 at 6:42 AM, fadishei fadis...@yahoo.com wrote: Hello Assume that you have collection property actors in a mapped class Movie and your code works fine this way: Movie.java: ... protected ListArtist actors; ... But I need to declare this property as:

iBatis - Connections to PostgreSQL Not Closing

2009-10-17 Thread Jim Borland
I have a Java application in Tomcat 5.5 that works fine, but it creates several PostgreSQL processes: IDLE in transaction, and they just sit there forever. I've updated my library jar files as follows: iBatis lib file: ibatis-2.3.4.726.jar JDBC driver: postgresql-8.3-605.jdbc3.jar The