1.Spring常用标记与注解
<bean id="" class="" >
<contructor-arg name="" value="">
<contructor-arg name="" ref="">
<property name="" value="">
<property name="" ref="">
<list><set><map><props>用于集合类
@Autowired:属于Spring 的org.springframework.beans.factory.annotation包下,可用于为类的属性、构造器、方法进行注值
@Service对应的是业务层Bean
@component (把普通pojo实例化到spring容器中,相当于配置文件中的 (<bean id="" class=""/>)
泛指各种组件
@Data,简化POJO类,不用再写那些构造方法、getter/setter,toString()了,专注定义属性。
@SuppressWarnings:告诉编译器忽略指定的警告,不用在编译完成后出现警告信息。
@RunWith 运行器
@ContextConfiguration 跟Runwith联用,引入bean
2.spring junit注意事项
- junit的测试方法必须使用@Test注解
- 测试方法必须以public void修饰,并且不包含参数
- 测试代码的包应该和被测试代码包结构保持一致
- 测试单元中的每个方法必须可以独立测试,方法间不能有任何依赖
- 测试类一般使用Test作为类名的后缀
- 测试方法使一般用test作为方法名的前缀
以后再添加需要注意的地方
网友评论