Thank you. It helps a lot !
Do you know if hibernate3 allows to persist a proxy (with a special mapping configuration) ?
Arnaud
Type: Posts; User: aprost; Keyword(s):
Thank you. It helps a lot !
Do you know if hibernate3 allows to persist a proxy (with a special mapping configuration) ?
Arnaud
Hi,
I have a AOP interceptor on a bean. When trying to persist the bean with hibernate, I've got the following error:
org.springframework.orm.hibernate3.HibernateSystemException: Unknown...
The URL of the magazine web site is http://www.programmez.com/kiosque.php but the article is not available online for now. It will be in the archive part of the site in two month.
Arnaud
Hello,
I have written an article about Spring in the april issue of the french magazine « Programmez ! ». It explains the Inversion of Control and the Spring DAO support.
Arnaud
Hi,
One of my class is a AOP proxy. When i call get getHibernateTemplate().save(basicProject), the following exception is throw:
org.springframework.orm.hibernate.HibernateSystemException:...
With the method queryForObject we can provide to Ibatis a resultObject, created for example, by the applicationContext.
I would like to do the same with a list or at least telling Ibatis not to...
Check your Dao. You're probably using both IBATIS 2 and 1 (jpetstore is using IBATIS 1.x, if I remember). Take a look here : http://www.springframework.org/docs/reference/orm.html#d0e6209
Arnaud
Forget what i said i understand what you mean. In the userRepositoy class dependency was express on class not interface:
public UserRepositoryImpl(UserMapper mapper) {
this.mapper = mapper;...
UserMapper a class wich implements CRUD methods from a Mapper inteface.
Im a a bit lost: how do I express dependencie on interface in this particiliar case ?
thanks
Arnaud
I have some trouble with BeanNameAutoProxyCreator.
I have a lot of class with the same transactional methods. So i use BeanNameAutoProxyCreator to wrap them in a completely identical fashion....