4 Star 4 Fork 0

yacht / maven-framework-project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EmployeeServiceImplTest.java 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
v5tech 提交于 2013-04-19 16:55 . 修正一些配置
package com.fengjing.framework.hibernate.service.impl;
import java.util.List;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.fengjing.framework.hibernate.model.Department;
import com.fengjing.framework.hibernate.model.Employee;
import com.fengjing.framework.hibernate.service.EmployeeService;
@ContextConfiguration(locations={"classpath:spring-hibernate.xml"})
@RunWith(value=SpringJUnit4ClassRunner.class)
public class EmployeeServiceImplTest {
@Resource(name="employeeServiceImplHibernate4")
private EmployeeService employeeService;
@Test
public void save(){
Employee employee=new Employee();
employee.setEmpname("李四");
employee.setSex("女");
employee.setLocation("陕西汉中");
Department department=new Department();
department.setDeptname("测试部");
employee.setDepartment(department);
employeeService.add(employee);
}
@Test
public void listAll(){
List<Employee> lists=employeeService.query(" from Employee ");
for (Employee employee : lists) {
System.out.println(employee.getEmpname()+"\t"+employee.getId()+"\t"+employee.getDepartment().getId()+"\t"+employee.getDepartment().getDeptname());
}
}
@Test
public void modify(){
List<Employee> list=employeeService.query(" from com.fengjing.framework.hibernate.model.Employee employee where employee.id = 1 ");
Employee employee = list.get(0);
employee.setEmpname("胡xx");
employee.setSex("男");
employee.setLocation("中国北京");
employee.getDepartment().setDeptname("国务院");
employeeService.update(employee);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yacht/maven-framework-project.git
git@gitee.com:yacht/maven-framework-project.git
yacht
maven-framework-project
maven-framework-project
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891