Tag Info

Hot answers tagged

2

Always wrap your batch in a transaction. If you are batching 100 inserts per transaction then either all 100 will be committed if everything is fine. I'd also suggest you to use stateless sessions to speed up the batch inserts. I strongly recommend you to read the Batch processing tutorial of Hibernate documentation.


1

Prepend hibernate. in all the property names. <session-factory> <!-- Database connection settings --> <property name="hibernate.connection.driver_class"> com.mysql.jdbc.Driver </property> <property name="hibernate.connection.url"> jdbc:mysql://localhost:3306/Project1 </property> ...


1

I might not be understanding the question fully, so this might sound a little naive. Couldn't you solve this with optimistic locking ? In your catch block, assuming the second user is the one coming to the party late, couldn't you then pull the lastest version of the document and assign to the second user's Posting. try { def posting = .... ...


1

No, it will still return a collection for you to iterate over - but you can use uniqueObject to get a single result instead. That will throw an exception if it turns out there's more than one result.


1

Change your query as below: String query = "from Code where Tags='" + tags+"'"; Otherwise as below: String hql = "from Code where Tags=:tags"; Query query = session.createQuery(hql); query.setParameter("tags",tags); The comparision in the whereclause is with a literal and not another column. So it muse be either quoted as in first case, or use a bind ...


1

I believe, being an mySQL extension behavior, it's not supported directly. As normal for all unsupported query syntax's, you may want to use native SQL in this case. Reference for native SQL support in hibernate, could be found here.


1

You should another fetching strategy. In you example, you are using default fetch strategy (select). You cann't delete objects with this strategy. Use join or subselect strategy: <set name="children" table="child" inverse="false" fetch="join" cascade="all-delete-orphan"> or <set name="children" table="child" inverse="false" ...


1

In Hibernate, if you have a ManyToOne then it is always a first-class owning side of a relationship (unless possibly if your ManyToOne is represented by a join table and not a column on the many side). In other words, there is no way to set inverse=true on the Many side of the relationship. When you create a OneToMany, if you specify inverse=false then ...


1

Both @Transactional and TransactionTemplate ensure atomicity. @Transactional is for declarative transaction management, TransactionTemplate is for programmatic transaction management. You should choose one. The idea of transaction propagation applies only to declarative transaction management and defines a transaction behaviour when it is executed in more ...


1

@Transactional(propagation = Propagation.REQUIRED May solve your problem. Suppose in your Impl there is a method Excecute.Inside Excecute method there are other M1(),M2(),M3(),M4(),M5() methods. May be you trying to say if for M1(),M2().M3().M4() methods Db operation succedded and at last for M5() it throws some exception then M1() to M5() all db ...


1

I finally managed to fix my problem. The issue was with the cascading settings. I had set it to cascasde="all" in all associations. I made changes to Rental.hbm.xml to set specific cascade options for an association: <!-- n:1 mapping with User --> <many-to-one name="user" column="userID" class="User" not-null="true" fetch="join" ...



Only top voted, non community-wiki answers of a minimum length are eligible