基本信息
源码名称:ssm入门级示例(mysql数据库)
源码大小:24.74M
文件格式:.gz
开发语言:Java
更新时间:2018-06-04
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
实现了添加学生功能


package ssm1;

import static org.junit.Assert.*;

import java.util.UUID;

import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.hyycinfo.ssm1.bean.Student;
import com.hyycinfo.ssm1.biz.StudentBiz;

public class TestSsm1 {
	private StudentBiz studentBiz;
	@Before
	public void before(){
		ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");
		studentBiz=(StudentBiz)ac.getBean("studentBiz");
	}
	
	
	@Test
	public void testadd() {
			Student s=new Student();
			s.setId(UUID.randomUUID().toString());
			s.setAge(22);
			s.setSname("aa");
			studentBiz.add(s);
	}
	

}