JAVA基础篇-抽象类

 

 

 

 

 

 

 

 

1.抽象类

 

package JavaStruct;

import junit.framework.TestCase;
import net.sf.hibernate.FlushMode;
import net.sf.hibernate.Session;
import net.sf.hibernate.SessionFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate.SessionFactoryUtils;
import org.springframework.orm.hibernate.SessionHolder;
import org.springframework.transaction.support.TransactionSynchronizationManager;

//抽象类,含抽象方法,继承一个类或实现一个接口
public abstract class AbstractTest extends TestCase{
	protected ApplicationContext context;

	protected void setUp() throws Exception {
        context = getContext();
        //Application.getInstance().setContainer(new SpringContainer(context));
        openSession();
        super.setUp();
    }

    protected abstract ApplicationContext getContext();

    private void openSession() {
        SessionFactory sessionFactory = (SessionFactory) context.getBean("sessionFactory");
        Session hibSession = SessionFactoryUtils.getSession(sessionFactory, true);
        hibSession.setFlushMode(FlushMode.NEVER);
        TransactionSynchronizationManager.bindResource(sessionFactory, new SessionHolder(hibSession));
    }

    protected void tearDown() throws Exception {
        super.tearDown();
        closeSession();
    }

    private void closeSession() {
        SessionFactory sessionFactory = (SessionFactory) context.getBean("sessionFactory");
        SessionHolder sessionHolder = (SessionHolder) TransactionSynchronizationManager.unbindResource(sessionFactory);
        SessionFactoryUtils.closeSessionIfNecessary(sessionHolder.getSession(), sessionFactory);
    }
    
    protected void newSession() {
        closeSession();
        openSession();
    }   
		
	
}

 

具体类继承抽象类,写具体方法

 

 

package JavaStruct;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest extends AbstractTest{
	private ServiceA serviceA;

	@Override
	protected ApplicationContext getContext() {
		
		return new ClassPathXmlApplicationContext(new String[]{"application_context.xml,oracle.xml,aaa.xml"});
	}
    
	protected void setUp() throws Exception{
		super.setUp();
		serviceA=(ServiceA)context.getBean("ServiceA");
	}
	public void testab(){
		//testMethod
	}
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值