springMVC之事务配置(问题来源:为什么数据保存不了)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

参考文章:http://www.cnblogs.com/leiOOlei/p/3725911.html

自己的亲身体会,来源问题this.sessionFactory.getCurrentSession().save(obj);保存不了数据。原因在springMVC配置事务时,事务注解应该在类扫描注解之后,然后在到相对应dao层的方法要加@Transaction

全注解配置如下:

第一步,首先看一下web.xml,如下:



  Archetype Created Web Application
  
    contextConfigLocation
    classpath:/spring-*.xml
  
  
    org.springframework.web.context.ContextLoaderListener
  
  
    lei-dispatcher
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:/lei-dispatcher-servlet.xml
    
    1
  
  
    lei-dispatcher
    /
  

  

第二步,spring-hibernate配置,见以下spring-hibernate.xml配置

  
 
	

		
		
		
		
	
	

	
		
		
			
				org.hibernate.dialect.MySQLDialect
				update 
                true
                true
                thread
			
		
		
			
				
					classpath*:hibernate.cfg.test.xml
				
			
		
	
	
	
		
	
	

  第三步:springMVC配置
 




	
	
	
	
	 
	
	
	

	

	
	
	
		  
	      
	      
	
	

	
	
	
	
	
		
		
	
 

  到这配置完毕,相对应的dao层如下:

package com.example.dao.impl;

import java.util.List;

import javax.annotation.Resource;

import org.hibernate.SessionFactory;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

import com.example.dao.IFilesDAO;
import com.example.entity.Files;

@Repository
public class FilesDAO implements IFilesDAO{

	@Resource
	private SessionFactory sessionFactory;

	@SuppressWarnings("unchecked")
	@Override
	public List findFilesList(String id) {
		// TODO Auto-generated method stub
		return this.sessionFactory.getCurrentSession().createQuery("from Files where id='" + id+"'").list();
	}

	@Transactional
	@Override
	public void deleteFile(Files file) {
		this.sessionFactory.getCurrentSession().delete(file);
	}

	@Transactional
	@Override
	public void updateFile(Files file) {
		// TODO Auto-generated method stub
		this.sessionFactory.getCurrentSession().update(file);
	}

	@Transactional
	@Override
	public void saveFiles(Files file) {
		// TODO Auto-generated method stub
		System.out.println(file.getId());
		this.sessionFactory.getCurrentSession().save(file);
		System.out.println(file.getId());
	}
	
}

  具体展示如下,其实spring事务配置还有其他配置方式。如需看可以访问《Spring事务配置的5种方法》

转载于:https://my.oschina.net/yuanfy/blog/378139

你可能感兴趣的:(springMVC之事务配置(问题来源:为什么数据保存不了))