spring 测试类test测试方法

实例掩码地址为:孔浩组织结构设计

spring 测试类test测试方法

web.xml配置文件:

1
2
3         contextConfigLocation
4         classpath*:beans.xml
5

测试类

1 package org.konghao.service;
 2
 3 import javax.inject.Inject;
 4
 5 import org.hibernate.Session;
 6 import org.hibernate.SessionFactory;
 7 import org.junit.After;
 8 import org.junit.Before;
 9 import org.junit.Test;
10 import org.junit.runner.RunWith;
11 import org.konghao.sys.org.iservice.IInitService;
12 import org.springframework.orm.hibernate4.SessionHolder;
13 import org.springframework.test.context.ContextConfiguration;
14 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
15 import org.springframework.transaction.support.TransactionSynchronizationManager;
16
17 @RunWith(SpringJUnit4ClassRunner.class)
18 @ContextConfiguration("/beans.xml")
19 public class TestInitService {
20     @Inject
21     private IInitService initService;
22     @Inject
23     private SessionFactory sessionFactory;
24
25     @Before
26     public void setUp() {
27         //此时最好不要使用Spring的Transactional来管理,因为dbunit是通过jdbc来处理connection,再使用spring在一些编辑操作中会造成事务shisu
28         Session s = sessionFactory.openSession();
29         TransactionSynchronizationManager.bindResource(sessionFactory, new SessionHolder(s));
30         //SystemContext.setRealPath("D:\\teach_source\\class2\\j2EE\\dingan\\cms-da\\src\\main\\webapp");
31     }
32
33     @After
34     public void tearDown() {
35         SessionHolder holder = (SessionHolder) TransactionSynchronizationManager.getResource(sessionFactory);
36         Session s = holder.getSession();
37         s.flush();
38         TransactionSynchronizationManager.unbindResource(sessionFactory);
39     }
40     @Test
41     public void testInitByXml() {
42         initService.initEntityByXml("orgs.xml");
43     }
44 }

解析xml文件 将信息保存到数据库;

1 package org.konghao.sys.org.service.impl;
 2
 3 import java.lang.reflect.InvocationTargetException;
 4 import java.lang.reflect.Method;
 5 import java.util.List;
 6
 7 import javax.inject.Inject;
 8
 9 import org.apache.commons.beanutils.BeanUtils;
10 import org.dom4j.Attribute;
11 import org.dom4j.Document;
12 import org.dom4j.DocumentException;
13 import org.dom4j.Element;
14 import org.dom4j.io.SAXReader;
15 import org.konghao.sys.org.iservice.IInitService;
16 import org.konghao.sys.org.model.SysException;
17 import org.springframework.beans.factory.BeanFactory;
18 import org.springframework.stereotype.Service;
19
20 @Service("initService")
21 public class InitService extends AbstractBaseSevice implements IInitService{
22
23     private Document document;
24     @Inject
25     private BeanFactory factory;
26
27     @Override
28     public void initEntityByXml(String filename) {
29         Element root = this.readDocument(filename);
30         String pname = root.attributeValue("package");
31         List initEntitys = root.selectNodes("/entitys/initEntity");
32         for (Element element : initEntitys) {
33             //如果这个实体存在就不添加
34             if (element.attributeValue("exist") == "1") {
35                 continue;
36             }else{
37                 String cname = element.attributeValue("class");
38                 cname = pname + "." + cname;
39                 String method = element.attributeValue("method");
40                 List entitys = (List)element.selectNodes("entity");
41                 addElements(cname,method,entitys);
42             }
43         }
44     }
45
46     private Element readDocument(String filename){
47         try {
48             SAXReader saxReader = new SAXReader();
49             Document d = saxReader.read( InitService.class.getClassLoader().getResourceAsStream("init/" + filename));
50             return d.getRootElement();
51         } catch (DocumentException e) {
52             e.printStackTrace();
53         }
54         return null;
55
56     }
57
58     private void addElements(String cname, String method, List entitys) {
59         for (Element element : entitys) {
60             addElement(cname , method , element);
61         }
62     }
63
64     private void addElement(String cname, String method, Element element) {
65         List attrs = element.attributes();
66         try {
67             Object o = Class.forName(cname).newInstance();
68             String[] methods = method.split("\\.");
69             if (methods.length !=2) {
70                 throw new SysException("方法格式不正确");
71             }
72             String sname = methods[0]; //对应org.xml文件的method的第一个
73             String mname = methods[1];
74             for (Attribute attribute : attrs) {
75                 System.out.println(attribute.getName() + " ; " + attribute.getValue());
76                 String name = attribute.getName();
77                 String value = attribute.getValue();
78                 BeanUtils.copyProperty(o, name, value);//利用反射进行拷贝
79             }
80             Object service = factory.getBean(sname);//该sname应该与注入的service名称一致 ,例如本地中使用的是OrgtypeService,则对应的service也是OrgTypeService,否则将报找不到该注入的类型
81             Method m = service.getClass().getMethod(mname , o.getClass());
82             m.invoke(service, o);
83         } catch (ClassNotFoundException e) {
84             e.printStackTrace();
85         } catch (IllegalAccessException e) {
86             e.printStackTrace();
87         } catch (InvocationTargetException e) {
88             e.printStackTrace();
89         } catch (SecurityException e) {
90             e.printStackTrace();
91         } catch (NoSuchMethodException e) {
92             e.printStackTrace();
93         } catch (InstantiationException e) {
94             e.printStackTrace();
95         }
96     }
97
98
99

解析文件:

1
 2 package="org.konghao.sys.org.model" >
 3     class="OrgType" method="OrgTypeService.add">
 4
 5
 6
 7
 8
 9
10
11
12
13     class="Position" method="PositionService.add">
14
15
16
17
18
19
20
21
22

底层实现:

1 package org.konghao.sys.org.service.impl;
 2
 3 import java.util.List;
 4
 5 import javax.inject.Inject;
 6
 7 import org.konghao.sys.org.idao.IOrgTypeDao;
 8 import org.konghao.sys.org.iservice.IOrgTypeService;
 9 import org.konghao.sys.org.model.OrgType;
10 import org.konghao.sys.org.model.SysException;
11 import org.springframework.stereotype.Service;
12
13 @Service("OrgTypeService")
14 public class OrgTypeService extends AbstractBaseSevice implements IOrgTypeService{
15
16     @Inject
17     private IOrgTypeDao orgTypeDao;
18
19     @Override
20     public void add(OrgType orgType) {
21         if (orgTypeDao.loadBySn(orgType.getSn()) != null) {
22             throw new SysException("要添加的组织机构类型的sn已经存在");
23         }
24         orgTypeDao.add(orgType);
25     }
26
27
28 }

spring的beans.xml配置

1
  2   3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
  4     xmlns:context="http://www.springframework.org/schema/context"
  5     xmlns:tx="http://www.springframework.org/schema/tx"
  6     xsi:schemaLocation="http://www.springframework.org/schema/beans
  7          http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8          http://www.springframework.org/schema/context
  9          http://www.springframework.org/schema/context/spring-context-3.0.xsd
 10          http://www.springframework.org/schema/aop
 11          http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 12          http://www.springframework.org/schema/tx
 13          http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
 14
 15
 16
 17     package="org.konghao" />
 18
 19     class="java.lang.String">
 20
 21
 22
 23     class="java.lang.String">
 24
 25
 26
 27     class="org.apache.commons.dbcp.BasicDataSource"
 28         destroy-method="close">
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 50      51         class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
 52
 53
 54
 55
 56             org.konghao.sys.org.model
 57
 58
 59
 60
 61                 org.hibernate.dialect.MySQLDialect
 62                 true
 63                 update
 64                 true
 65
 66
 67
 68
 69
 70
 71      72         class="org.springframework.orm.hibernate4.HibernateTransactionManager">
 73
 74
 75
 76
 77
 78
 80          81             expression="execution(* org.konghao.sys.org.service.impl.*.*(..))" />
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100

————————————————————————————————————————————————————————————————————————

版本3: 多层次解析xml文件的实现

1 package org.konghao.sys.org.service.impl;
  2
  3 import java.lang.reflect.InvocationTargetException;
  4 import java.lang.reflect.Method;
  5 import java.util.Iterator;
  6 import java.util.List;
  7
  8 import javax.inject.Inject;
  9 import javax.persistence.criteria.CriteriaBuilder.In;
 10
 11 import org.apache.commons.beanutils.BeanUtils;
 12 import org.dom4j.Attribute;
 13 import org.dom4j.Document;
 14 import org.dom4j.DocumentException;
 15 import org.dom4j.Element;
 16 import org.dom4j.io.SAXReader;
 17 import org.konghao.sys.org.iservice.IInitService;
 18 import org.konghao.sys.org.model.OrgType;
 19 import org.konghao.sys.org.model.SysException;
 20 import org.springframework.beans.factory.BeanFactory;
 21 import org.springframework.stereotype.Service;
 22
 23 @Service("initService")
 24 public class InitService extends AbstractBaseSevice implements IInitService{
 25
 26     private Document document;
 27     @Inject
 28     private BeanFactory factory;
 29
 30     @Override
 31     public void initEntityByXml(String filename) {
 32         Element root = this.readDocument(filename);
 33         String pname = root.attributeValue("package");
 34         List initEntitys = root.selectNodes("/entitys/initEntity");
 35         for (Element element : initEntitys) {
 36             String ipname = element.attributeValue("package");
 37             String cname = element.attributeValue("class");
 38             System.out.println(element.attributeValue("exist"));
 39             //如果为1 表示已经添加过了
 40             if (element.attributeValue("exist") == "1" || element.attributeValue("exist").equals("1")) {
 41                 continue;
 42             }if (ipname != null && !"".equals(ipname)) {
 43                 cname = ipname + "." + cname;
 44             } else{
 45                 cname = pname + "." + cname;
 46             }
 47             String method = element.attributeValue("method");
 48             List entitys = (List)element.selectNodes("entity");
 49             System.out.println(cname + "  " + method );
 50             addElements(cname,method,entitys);
 51
 52         }
 53     }
 54
 55     private Element readDocument(String filename){
 56         try {
 57             SAXReader saxReader = new SAXReader();
 58             Document d = saxReader.read( InitService.class.getClassLoader().getResourceAsStream("init/" + filename));
 59             return d.getRootElement();
 60         } catch (DocumentException e) {
 61             e.printStackTrace();
 62         }
 63         return null;
 64
 65     }
 66
 67     private void addElements(String cname, String method, List entitys) {
 68         for (Element element : entitys) {
 69             addElement(cname , method , element , null);
 70         }
 71     }
 72
 73     private void addElement(String cname, String method, Element e,Object parent) {
 74         try {
 75             //获取所有的属性
 76             List atts = (List)e.attributes();
 77             Object obj = Class.forName(cname).newInstance();
 78             String [] ms = method.split("\\.");
 79             if(ms.length!=2) throw new SysException("方法格式不正确");
 80             String sname = ms[0]; String mname = ms[1];
 81             for(Attribute att:atts) {
 82                 String name = att.getName();
 83                 String value = att.getValue();
 84                 BeanUtils.copyProperty(obj, name, value);
 85             }
 86             if(parent!=null) {
 87                 BeanUtils.copyProperty(obj, "parent", parent);
 88             }
 89             Object service = factory.getBean(sname);
 90             Method m = service.getClass().getMethod(mname,obj.getClass());
 91             m.invoke(service, obj);
 92             List es = e.selectNodes("entity");
 93             for(Element ele:es) {
 94                 addElement(cname, method, ele, obj);
 95             }
 96         } catch (ClassNotFoundException e1) {
 97             e1.printStackTrace();
 98         } catch (IllegalAccessException e1) {
 99             e1.printStackTrace();
100         } catch (InvocationTargetException e1) {
101             e1.printStackTrace();
102         } catch (SecurityException e1) {
103             e1.printStackTrace();
104         } catch (NoSuchMethodException e1) {
105             e1.printStackTrace();
106         } catch (InstantiationException e1) {
107             e1.printStackTrace();
108         }
109     }
110
111 }

实体类Org

1 package org.konghao.sys.org.model;
  2
  3 import java.util.List;
  4
  5 import javax.persistence.Column;
  6 import javax.persistence.Entity;
  7 import javax.persistence.GeneratedValue;
  8 import javax.persistence.Id;
  9 import javax.persistence.JoinColumn;
 10 import javax.persistence.ManyToOne;
 11 import javax.persistence.Table;
 12
 13 /**
 14  * 组织对象,该表可以生成完整的组织树
 15  * 根据组织类型来具体存储实际中存在的组织
 16  * 学院  --> xx
 17  * 校本部--> FX
 18  * 南校区--> FX
 19  * @author jrx
 20  *
 21  */
 22 @Entity
 23 @Table(name="t_org")
 24 public class Org {
 25
 26     /**
 27      *  组织机构的id
 28      */
 29     private int id;
 30     /**
 31      * 组织机构的名称
 32      */
 33     private String name ;
 34     /**
 35      * 组织机构所属类型的id,此处不要使用ManyToOne
 36      */
 37     private Integer typeId;
 38     /**
 39      * 组织机构所属类型的名称,冗余
 40      */
 41     private String typeName;
 42     /**
 43      * 组织机构的排序号
 44      */
 45     private Integer orderNum ;
 46     /**
 47      * 组织机构的父亲组织
 48      */
 49     private Org parent ;
 50     /**
 51      * 管理类型
 52      */
 53     private int managerType;
 54     /**
 55      * 组织机构的地址
 56      */
 57     private String address ;
 58     /**
 59      * 组织机构的电话
 60      */
 61     private String phone ;
 62     /**
 63      * 扩展属性,用于在针对某些特殊的组织存储相应的信息
 64      */
 65     private String att1 ;
 66     private String att2 ;
 67     private String att3 ;
 68
 69     @Id
 70     @GeneratedValue
 71     public int getId() {
 72         return id;
 73     }
 74
 75     public void setId(int id) {
 76         this.id = id;
 77     }
 78
 79     public String getName() {
 80         return name;
 81     }
 82
 83     public void setName(String name) {
 84         this.name = name;
 85     }
 86
 87     @Column(name="tid")
 88     public Integer getTypeId() {
 89         return typeId;
 90     }
 91
 92     public void setTypeId(Integer typeId) {
 93         this.typeId = typeId;
 94     }
 95     @Column(name="tname")
 96     public String getTypeName() {
 97         return typeName;
 98     }
 99
100     public void setTypeName(String typeName) {
101         this.typeName = typeName;
102     }
103     @Column(name="order_num")
104     public Integer getOrderNum() {
105         return orderNum;
106     }
107
108     public void setOrderNum(Integer orderNum) {
109         this.orderNum = orderNum;
110     }
111     @ManyToOne
112     @JoinColumn(name="pid")
113     public Org getParent() {
114         return parent;
115     }
116
117     public void setParent(Org parent) {
118         this.parent = parent;
119     }
120
121     public String getAddress() {
122         return address;
123     }
124
125     public void setAddress(String address) {
126         this.address = address;
127     }
128
129     public String getPhone() {
130         return phone;
131     }
132
133     public void setPhone(String phone) {
134         this.phone = phone;
135     }
136
137     public String getAtt1() {
138         return att1;
139     }
140
141     public void setAtt1(String att1) {
142         this.att1 = att1;
143     }
144
145     public String getAtt2() {
146         return att2;
147     }
148
149     public void setAtt2(String att2) {
150         this.att2 = att2;
151     }
152
153     public String getAtt3() {
154         return att3;
155     }
156
157     public void setAtt3(String att3) {
158         this.att3 = att3;
159     }
160
161     @Column(name = "manager_type")
162     public int getManagerType() {
163         return managerType;
164     }
165
166     public void setManagerType(int managerType) {
167         this.managerType = managerType;
168     }
169
170     @Override
171     public String toString() {
172         return "Org [id=" + id + ", name=" + name + ", typeId=" + typeId
173                 + ", typeName=" + typeName + ", orderNum=" + orderNum
174                 + ", parent=" + parent + ", managerType=" + managerType
175                 + ", address=" + address + ", phone=" + phone + ", att1="
176                 + att1 + ", att2=" + att2 + ", att3=" + att3 + "]";
177     }
178
179
180 }

底层实现:

 1 package org.konghao.sys.org.service.impl;
 2
 3 import java.util.List;
 4
 5 import javax.inject.Inject;
 6
 7 import org.konghao.basic.model.Pager;
 8 import org.konghao.sys.dto.TreeDto;
 9 import org.konghao.sys.org.idao.IOrgDao;
10 import org.konghao.sys.org.idao.IOrgTypeDao;
11 import org.konghao.sys.org.iservice.IOrgService;
12 import org.konghao.sys.org.model.Org;
13 import org.konghao.sys.org.model.SysException;
14 import org.springframework.stereotype.Service;
15
16 @Service("orgService")
17 public class OrgService extends AbstractBaseSevice implements IOrgService {
18
19
20     @Inject
21     private IOrgDao orgDao;
22
23     @Inject
24     private IOrgTypeDao orgTypeDao;
25
26     private void checkChildOrgNum(Org cOrg , Org pOrg){
27         if (pOrg == null) {
28             return;
29         }
30         //获取根据组织类型获取某组织类型下组织的数量(数量根据OrgTypeRule的num来确定数量,即某类型下组织数量需小于等于OrgTypeRule中num的数量)
31         int hnum = orgDao.loadNumByType(pOrg.getId(), cOrg.getTypeId());
32         //根据组织类型的父id和子id获取num数量
33         int rnum = orgTypeDao.loadOrgTypeRuleNum(pOrg.getTypeId(), cOrg.getTypeId());
34         if (rnum < 0) {
35             return;
36         }
37         if (hnum >= rnum) {
38             throw new SysException(pOrg.getName() +"下的" + cOrg.getName() + "的数量已经达到最大化");
39         }
40     }
41
42     //parent已经存在的添加
43     @Override
44     public void add(Org org) {
45         checkChildOrgNum(org, org.getParent());
46         if (org.getParent() != null) {
47             org.setOrderNum(orgDao.getMaxOrder(org.getParent().getId()));
48         }else {
49             org.setOrderNum(null);
50         }
51         orgDao.add(org);
52     }
53
54     @Override
55     public void add(Org org, Integer pid) {
56         if (pid != null) {
57             Org p = orgDao.load(pid);
58             if (p == null) {
59                 throw new SysException("要添加的父组织不存在");
60             }
61             checkChildOrgNum(org, org.getParent());
62             org.setParent(p);
63         }
64         org.setOrderNum(orgDao.getMaxOrder(pid));
65         orgDao.add(org);
66     }
67
68 }

Original: https://www.cnblogs.com/a757956132/p/6072962.html
Author: a757956132
Title: spring 测试类test测试方法

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/540797/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

  • 老杜带你学Ajax,轻松掌握ajax底层实现原理

    课程导读 原生的ajax虽然在实际开发中很少编写,但如果想将js高级框架底层学明白,那ajax的原理是必须要求精通的。 本套ajax视频对ajax底层实现原理讲解非常透彻,对aja…

    Java 2023年6月9日
    0104
  • Redisson报错

    org.redisson.client.RedisResponseTimeoutException: Redis server response timeout (3000 ms)…

    Java 2023年6月6日
    086
  • spring 工具类大集合

    org.springframework.util.AntPathMatcher 它可以帮助我们做一些路径的匹配,可以用于路径映射规则匹配 。? (任何单字符) * (任意数量字符)…

    Java 2023年6月5日
    0117
  • Java 自定义Excel数据排序

    通常,我们可以在Excel中对指定列数据执行升序或者降序排序,排序时可依据单元格中的数值、单元格颜色、字体颜色或图标等。在需要自定义排序情况下,我们也可以自行根据排序需要编辑数据排…

    Java 2023年6月7日
    094
  • MySQL事务隔离级别

    MySQL事务隔离级别 事务 事务是由单独的一个或者多个SQL语句组成,是一个最小的不可再分割的单元,这一组操作里面的所有的执行,要么全部成功、要么全部不成功。如果有一个执行不成功…

    Java 2023年6月15日
    074
  • activit 表结构 flowable也大体适用

    1、结构设计 1.1、 逻辑结构设计 Activiti使用到的表都是ACT_开头的。 ACT_RE_*: ‘RE’表示repository(存储),Repo…

    Java 2023年6月7日
    079
  • Mysql: BLOB, TEXT, GEOMETRY or JSON column ‘Fresp’ can’t have a default value

    环境:MySQL8.0 问题 建表的时候出现错误,语句如下: create table t_user ( Fid bigint not null auto_increment co…

    Java 2023年6月7日
    081
  • ICMP 介绍

    404. 抱歉,您访问的资源不存在。 可能是网址有误,或者对应的内容被删除,或者处于私有状态。 代码改变世界,联系邮箱 contact@cnblogs.com 园子的商业化努力-困…

    Java 2023年6月9日
    056
  • java

    404. 抱歉,您访问的资源不存在。 可能是网址有误,或者对应的内容被删除,或者处于私有状态。 代码改变世界,联系邮箱 contact@cnblogs.com 园子的商业化努力-困…

    Java 2023年6月15日
    063
  • 第七周总结-vue脚手架整合SSM-路由配置

    使用axios异步 用户列表 编号 姓名 年&#x9F…

    Java 2023年6月7日
    097
  • 2021 ICPC 沈阳站 ( E, F题 )

    2021 ICPC 沈阳站 E, F题 第一场区域赛,清楚自己的实力,在队里说两题就算赢,最后确实两题。贴一下比赛的代码,之后补题。 E题 签到 暴力字符串,找 “ed…

    Java 2023年6月5日
    072
  • Spring事件执行流程源码分析

    1. 背景 为啥突然想到写这个?起因就是看到了Nacos的 #3757 ISSUE,理解错误, 以为是服务启动,没有注册上服务,实际namespace不同,导致服务无法注册。 但这…

    Java 2023年6月15日
    057
  • Redis+Lua实现简易的秒杀抢购

    1 商品抢购 主要逻辑是:减库存,记录抢购成功的用户 @RestController public class DemoController { @Resource private…

    Java 2023年6月7日
    083
  • 分布式搜索引擎ElasticSearch

    什么是ElasticSearch?Elasticsearch是一个 实时的分布式搜索和分析引擎。ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用…

    Java 2023年6月13日
    081
  • WWDC2016-session402-whatsNewInSwift3

    Dock 应用的介绍:1.设计到的东西多2.使用 swift 设计3.Dock 的代码量: 200,000行4.更少的重写相同功能的代码 swift.org 官网介绍 Swift …

    Java 2023年5月30日
    076
  • xen 虚拟机挂了,宿主机假死的问题追终,全思路

    出问题主机工作环境用的是xenserver6.5集群,有一天上去突然发现一台vm连不上了,想着那就上去xenserver重启虚拟机,结果强制重启不能成功,就上去宿主机查询磁盘空间 …

    Java 2023年5月30日
    090
亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球