Thanks very much, you save me :)
I follow your suggestion and i remove all aspectj.
In applicationContext-ccr-hibernate.xml :
<tx:annotation-driven transaction-manager="transactionManager"...
Type: Posts; User: flam182; Keyword(s):
Thanks very much, you save me :)
I follow your suggestion and i remove all aspectj.
In applicationContext-ccr-hibernate.xml :
<tx:annotation-driven transaction-manager="transactionManager"...
For my struts action i make this :
@Controller
public class IdentificationAction extends ActionSupport implements Preparable {
@Autowired
private UserImplService userService;
//...
Thanks for help Marten,
I'have fixed my GenericDao with :
public Session getSession() {
return sessionFactory.getCurrentSession();
}
Hello,
I begin with Spring 3.1.1/Hibernate 4.1.0/Struts 2.2.3.
I have no error in logs, when i select data all is ok but when i save an object, i have always no error but the object is not save...